mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fix MethodMatcher API doc description
Closes gh-26893
This commit is contained in:
@@ -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);
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
Reference in New Issue
Block a user