Browse Source

Polishing

pull/25798/head
Juergen Hoeller 6 years ago
parent
commit
3b9558a269
  1. 3
      spring-webmvc/src/main/java/org/springframework/web/servlet/HandlerExecutionChain.java

3
spring-webmvc/src/main/java/org/springframework/web/servlet/HandlerExecutionChain.java

@ -97,6 +97,7 @@ public class HandlerExecutionChain { @@ -97,6 +97,7 @@ public class HandlerExecutionChain {
/**
* Add the given interceptor at the specified index of this chain.
* @since 5.2
*/
public void addInterceptor(int index, HandlerInterceptor interceptor) {
initInterceptorList().add(index, interceptor);
@ -219,7 +220,7 @@ public class HandlerExecutionChain { @@ -219,7 +220,7 @@ public class HandlerExecutionChain {
/**
* Delegates to the handler and interceptors' {@code toString()}.
* Delegates to the handler's {@code toString()} implementation.
*/
@Override
public String toString() {

Loading…
Cancel
Save