DispatcherHandler.getHandlerMappings() is also final
Issue: SPR-15934
This commit is contained in:
parent
eb6bd2d7b8
commit
41b53de644
|
|
@ -112,7 +112,7 @@ public class DispatcherHandler implements WebHandler, ApplicationContextAware {
|
||||||
* @return immutable list with the configured mappings or {@code null}
|
* @return immutable list with the configured mappings or {@code null}
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public List<HandlerMapping> getHandlerMappings() {
|
public final List<HandlerMapping> getHandlerMappings() {
|
||||||
return this.handlerMappings;
|
return this.handlerMappings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue