File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
web/src/main/java/org/springframework/security/web/util/matcher Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 23
23
import java .util .Objects ;
24
24
25
25
import jakarta .servlet .http .HttpServletRequest ;
26
- import org .apache .commons .logging .Log ;
27
- import org .apache .commons .logging .LogFactory ;
28
26
29
27
import org .springframework .util .Assert ;
30
28
37
35
*/
38
36
public final class AndRequestMatcher implements RequestMatcher {
39
37
40
- private final Log logger = LogFactory .getLog (getClass ());
41
-
42
38
private final List <RequestMatcher > requestMatchers ;
43
39
44
40
/**
Original file line number Diff line number Diff line change 17
17
package org .springframework .security .web .util .matcher ;
18
18
19
19
import jakarta .servlet .http .HttpServletRequest ;
20
- import org .apache .commons .logging .Log ;
21
- import org .apache .commons .logging .LogFactory ;
22
20
23
21
import org .springframework .util .Assert ;
24
22
33
31
*/
34
32
public class NegatedRequestMatcher implements RequestMatcher {
35
33
36
- private final Log logger = LogFactory .getLog (getClass ());
37
-
38
34
private final RequestMatcher requestMatcher ;
39
35
40
36
/**
You can’t perform that action at this time.
0 commit comments