Skip to content

Commit 3b247a9

Browse files
authored
Fix MethodMatcher API doc description
Closes gh-26893
1 parent d30432b commit 3b247a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/core/core-aop-api.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ The `MethodMatcher` interface is normally more important. The complete interface
5757
----
5858
public interface MethodMatcher {
5959
60-
boolean matches(Method m, Class targetClass);
60+
boolean matches(Method m, Class<?> targetClass);
6161
6262
boolean isRuntime();
6363
64-
boolean matches(Method m, Class targetClass, Object[] args);
64+
boolean matches(Method m, Class<?> targetClass, Object... args);
6565
}
6666
----
6767

0 commit comments

Comments
 (0)