Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading