DispatcherHandler.getHandlerMappings() is also final

Issue: SPR-15934
This commit is contained in:
Rossen Stoyanchev 2017-09-25 19:30:22 -04:00
parent eb6bd2d7b8
commit 41b53de644
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public class DispatcherHandler implements WebHandler, ApplicationContextAware {
* @return immutable list with the configured mappings or {@code null}
*/
@Nullable
public List<HandlerMapping> getHandlerMappings() {
public final List<HandlerMapping> getHandlerMappings() {
return this.handlerMappings;
}