File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
web/src/main/java/org/springframework/security/web/server/savedrequest Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public class WebSessionServerRequestCache implements ServerRequestCache {
57
57
58
58
private String sessionAttrName = DEFAULT_SAVED_REQUEST_ATTR ;
59
59
60
- private ServerWebExchangeMatcher saveRequestMatcher = createDefaultRequestMacher ();
60
+ private ServerWebExchangeMatcher saveRequestMatcher = createDefaultRequestMatcher ();
61
61
62
62
private String matchingRequestParameterName ;
63
63
@@ -156,7 +156,7 @@ private URI createRedirectUri(String uri) {
156
156
// @formatter:on
157
157
}
158
158
159
- private static ServerWebExchangeMatcher createDefaultRequestMacher () {
159
+ private static ServerWebExchangeMatcher createDefaultRequestMatcher () {
160
160
ServerWebExchangeMatcher get = ServerWebExchangeMatchers .pathMatchers (HttpMethod .GET , "/**" );
161
161
ServerWebExchangeMatcher notFavicon = new NegatedServerWebExchangeMatcher (
162
162
ServerWebExchangeMatchers .pathMatchers ("/favicon.*" ));
You can’t perform that action at this time.
0 commit comments