We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb27bca commit 7add8cbCopy full SHA for 7add8cb
class-match/src/main/java/datadog/instrument/classmatch/AccessMatcher.java
@@ -52,15 +52,9 @@ public interface AccessMatcher extends IntPredicate {
52
/** Matches interface classes. */
53
AccessMatcher INTERFACE = Modifier::isInterface;
54
55
- /** Matches non-interface classes. */
56
- AccessMatcher CLASS = acc -> (acc & Modifier.INTERFACE) == 0;
57
-
58
- /** Matches abstract classes. */
+ /** Matches abstract classes/methods. */
59
AccessMatcher ABSTRACT = Modifier::isAbstract;
60
61
- /** Matches concrete (constructable) classes. */
62
- AccessMatcher CONCRETE = acc -> (acc & Modifier.ABSTRACT) == 0;
63
64
/**
65
* Conjunction of this matcher AND another.
66
*
0 commit comments