Remove Unused loggers

Closes gh-16319
This commit is contained in:
Max Batischev 2024-12-20 11:02:24 +03:00 committed by Rob Winch
parent c72359bf4b
commit 38523faaa0
2 changed files with 0 additions and 8 deletions

View File

@ -23,8 +23,6 @@ import java.util.Map;
import java.util.Objects;
import jakarta.servlet.http.HttpServletRequest;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.util.Assert;
@ -37,8 +35,6 @@ import org.springframework.util.Assert;
*/
public final class AndRequestMatcher implements RequestMatcher {
private final Log logger = LogFactory.getLog(getClass());
private final List<RequestMatcher> requestMatchers;
/**

View File

@ -17,8 +17,6 @@
package org.springframework.security.web.util.matcher;
import jakarta.servlet.http.HttpServletRequest;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.util.Assert;
@ -33,8 +31,6 @@ import org.springframework.util.Assert;
*/
public class NegatedRequestMatcher implements RequestMatcher {
private final Log logger = LogFactory.getLog(getClass());
private final RequestMatcher requestMatcher;
/**