We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7391f9b commit b1da893Copy full SHA for b1da893
spring-webmvc/src/main/java/org/springframework/web/servlet/handler/MatchableHandlerMapping.java
@@ -42,7 +42,9 @@ public interface MatchableHandlerMapping extends HandlerMapping {
42
* @since 5.3
43
*/
44
@Nullable
45
- PathPatternParser getPatternParser();
+ default PathPatternParser getPatternParser() {
46
+ return null;
47
+ }
48
49
/**
50
* Determine whether the request matches the given pattern. Use this method
0 commit comments