Skip to content

Commit 253ffd7

Browse files
committed
Make DispacherServlet attributes protected
Since the `initStrategies` method is there to be extended, the related attributes should be `protected` as well.
1 parent 62cb8ba commit 253ffd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-webflux/src/main/java/org/springframework/web/reactive/DispatcherHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ public class DispatcherHandler implements WebHandler, ApplicationContextAware {
7373

7474

7575
@Nullable
76-
private List<HandlerMapping> handlerMappings;
76+
protected List<HandlerMapping> handlerMappings;
7777

7878
@Nullable
79-
private List<HandlerAdapter> handlerAdapters;
79+
protected List<HandlerAdapter> handlerAdapters;
8080

8181
@Nullable
82-
private List<HandlerResultHandler> resultHandlers;
82+
protected List<HandlerResultHandler> resultHandlers;
8383

8484

8585
/**

0 commit comments

Comments
 (0)