From 253ffd719d5942dc5f6ff6a7cb7c264dd02188e1 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 23 Aug 2018 15:09:12 +0200 Subject: [PATCH] Make DispacherServlet attributes protected Since the `initStrategies` method is there to be extended, the related attributes should be `protected` as well. --- .../org/springframework/web/reactive/DispatcherHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/DispatcherHandler.java b/spring-webflux/src/main/java/org/springframework/web/reactive/DispatcherHandler.java index 86d3862b92..a41335f24c 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/DispatcherHandler.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/DispatcherHandler.java @@ -73,13 +73,13 @@ public class DispatcherHandler implements WebHandler, ApplicationContextAware { @Nullable - private List handlerMappings; + protected List handlerMappings; @Nullable - private List handlerAdapters; + protected List handlerAdapters; @Nullable - private List resultHandlers; + protected List resultHandlers; /**