Skip to content

Commit 3b9558a

Browse files
committed
Polishing
1 parent 692c5f2 commit 3b9558a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ public void addInterceptor(HandlerInterceptor interceptor) {
9797

9898
/**
9999
* Add the given interceptor at the specified index of this chain.
100+
* @since 5.2
100101
*/
101102
public void addInterceptor(int index, HandlerInterceptor interceptor) {
102103
initInterceptorList().add(index, interceptor);
@@ -219,7 +220,7 @@ void applyAfterConcurrentHandlingStarted(HttpServletRequest request, HttpServlet
219220

220221

221222
/**
222-
* Delegates to the handler and interceptors' {@code toString()}.
223+
* Delegates to the handler's {@code toString()} implementation.
223224
*/
224225
@Override
225226
public String toString() {

0 commit comments

Comments
 (0)