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 d30432b commit 3b247a9Copy full SHA for 3b247a9
src/docs/asciidoc/core/core-aop-api.adoc
@@ -57,11 +57,11 @@ The `MethodMatcher` interface is normally more important. The complete interface
57
----
58
public interface MethodMatcher {
59
60
- boolean matches(Method m, Class targetClass);
+ boolean matches(Method m, Class<?> targetClass);
61
62
boolean isRuntime();
63
64
- boolean matches(Method m, Class targetClass, Object[] args);
+ boolean matches(Method m, Class<?> targetClass, Object... args);
65
}
66
67
0 commit comments