Make DispacherServlet attributes protected

Since the `initStrategies` method is there to be extended, the related
attributes should be `protected` as well.
This commit is contained in:
Brian Clozel 2018-08-23 15:09:12 +02:00
parent 62cb8ba6ba
commit 253ffd719d
1 changed files with 3 additions and 3 deletions

View File

@ -73,13 +73,13 @@ public class DispatcherHandler implements WebHandler, ApplicationContextAware {
@Nullable
private List<HandlerMapping> handlerMappings;
protected List<HandlerMapping> handlerMappings;
@Nullable
private List<HandlerAdapter> handlerAdapters;
protected List<HandlerAdapter> handlerAdapters;
@Nullable
private List<HandlerResultHandler> resultHandlers;
protected List<HandlerResultHandler> resultHandlers;
/**