Fix MethodMatcher API doc description

Closes gh-26893
This commit is contained in:
Sviatoslav Hryb 2021-05-05 13:21:46 +03:00 committed by GitHub
parent d30432b6c0
commit 3b247a9c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -57,11 +57,11 @@ The `MethodMatcher` interface is normally more important. The complete interface
----
public interface MethodMatcher {
boolean matches(Method m, Class targetClass);
boolean matches(Method m, Class<?> targetClass);
boolean isRuntime();
boolean matches(Method m, Class targetClass, Object[] args);
boolean matches(Method m, Class<?> targetClass, Object... args);
}
----