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:
parent
62cb8ba6ba
commit
253ffd719d
|
|
@ -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;
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue