Browse Source

Fix MethodMatcher API doc description

Closes gh-26893
pull/25200/head
Sviatoslav Hryb 5 years ago committed by GitHub
parent
commit
3b247a9c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/docs/asciidoc/core/core-aop-api.adoc

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

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

Loading…
Cancel
Save