Skip to content

Commit 41b53de

Browse files
committed
DispatcherHandler.getHandlerMappings() is also final
Issue: SPR-15934
1 parent eb6bd2d commit 41b53de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public DispatcherHandler(ApplicationContext applicationContext) {
112112
* @return immutable list with the configured mappings or {@code null}
113113
*/
114114
@Nullable
115-
public List<HandlerMapping> getHandlerMappings() {
115+
public final List<HandlerMapping> getHandlerMappings() {
116116
return this.handlerMappings;
117117
}
118118

0 commit comments

Comments
 (0)