Skip to content

Commit

Permalink
Address Build Issues
Browse files Browse the repository at this point in the history
Issue gh-14837
  • Loading branch information
jzheaux committed Apr 17, 2024
1 parent 657760a commit 470e2c5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.springframework.security.authorization.AuthorizationDecision;
import org.springframework.security.authorization.AuthorizationManager;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.util.UrlUtils;
import org.springframework.security.web.util.matcher.RequestMatcher;
import org.springframework.security.web.util.matcher.RequestMatcher.MatchResult;
import org.springframework.security.web.util.matcher.RequestMatcherEntry;
Expand Down Expand Up @@ -76,7 +77,8 @@ public AuthorizationDecision check(Supplier<Authentication> authentication, Http
if (matchResult.isMatch()) {
AuthorizationManager<RequestAuthorizationContext> manager = mapping.getEntry();
if (this.logger.isTraceEnabled()) {
this.logger.trace(LogMessage.format("Checking authorization on %s using %s", requestLine(request), manager));
this.logger.trace(
LogMessage.format("Checking authorization on %s using %s", requestLine(request), manager));
}
return manager.check(authentication,
new RequestAuthorizationContext(request, matchResult.getVariables()));
Expand Down

0 comments on commit 470e2c5

Please sign in to comment.