Skip to content

Commit

Permalink
Polish Request Matchers
Browse files Browse the repository at this point in the history
  • Loading branch information
franticticktick committed Dec 20, 2024
1 parent c72359b commit 6b8cd9b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
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;

Expand All @@ -37,8 +35,6 @@
*/
public final class AndRequestMatcher implements RequestMatcher {

private final Log logger = LogFactory.getLog(getClass());

private final List<RequestMatcher> requestMatchers;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -33,8 +31,6 @@
*/
public class NegatedRequestMatcher implements RequestMatcher {

private final Log logger = LogFactory.getLog(getClass());

private final RequestMatcher requestMatcher;

/**
Expand Down

0 comments on commit 6b8cd9b

Please sign in to comment.