File tree 1 file changed +9
-9
lines changed
web/src/main/java/org/springframework/security/web/servlet/util/matcher
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -76,15 +76,6 @@ public boolean matches(HttpServletRequest request) {
76
76
return matchResult != null ;
77
77
}
78
78
79
- private MatchableHandlerMapping getMapping (HttpServletRequest request ) {
80
- try {
81
- return this .introspector .getMatchableHandlerMapping (request );
82
- }
83
- catch (Throwable ex ) {
84
- return null ;
85
- }
86
- }
87
-
88
79
@ Override
89
80
@ Deprecated
90
81
public Map <String , String > extractUriTemplateVariables (HttpServletRequest request ) {
@@ -109,6 +100,15 @@ private boolean notMatchMethodOrServletPath(HttpServletRequest request) {
109
100
|| this .servletPath != null && !this .servletPath .equals (request .getServletPath ());
110
101
}
111
102
103
+ private MatchableHandlerMapping getMapping (HttpServletRequest request ) {
104
+ try {
105
+ return this .introspector .getMatchableHandlerMapping (request );
106
+ }
107
+ catch (Throwable ex ) {
108
+ return null ;
109
+ }
110
+ }
111
+
112
112
/**
113
113
* @param method the method to set
114
114
*/
You can’t perform that action at this time.
0 commit comments