diff options
Diffstat (limited to 'src/main/java/ftbsc/lll/processor/annotations/FindMethod.java')
-rw-r--r-- | src/main/java/ftbsc/lll/processor/annotations/FindMethod.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/ftbsc/lll/processor/annotations/FindMethod.java b/src/main/java/ftbsc/lll/processor/annotations/FindMethod.java index 1705619..25db816 100644 --- a/src/main/java/ftbsc/lll/processor/annotations/FindMethod.java +++ b/src/main/java/ftbsc/lll/processor/annotations/FindMethod.java @@ -10,8 +10,6 @@ import java.lang.annotation.RetentionPolicy; * Overrides the marked method in the Injector, having the * implementation return a built {@link MethodProxy} with * the specified parameters. - * @implNote if name is omitted, the name of the annotated - * method is used. * @since 0.2.0 */ @Retention(RetentionPolicy.CLASS) @@ -25,6 +23,8 @@ public @interface FindMethod { Class<?> parent() default Object.class; /** + * The name of the method to find. If omitted, the name of the annotated + * method will be used. * @return the name of the method, will default to the empty string * (the name of the annotated method will instead be used) */ |