Polishing

This commit is contained in:
Juergen Hoeller 2020-08-07 15:51:33 +02:00
parent 692c5f292d
commit 3b9558a269
1 changed files with 2 additions and 1 deletions

View File

@ -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 {
/**
* Delegates to the handler and interceptors' {@code toString()}.
* Delegates to the handler's {@code toString()} implementation.
*/
@Override
public String toString() {