diff options
Diffstat (limited to 'src/main/java/ftbsc/lll/processor/annotations/Target.java')
-rw-r--r-- | src/main/java/ftbsc/lll/processor/annotations/Target.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/ftbsc/lll/processor/annotations/Target.java b/src/main/java/ftbsc/lll/processor/annotations/Target.java index dbe7cf6..15967cb 100644 --- a/src/main/java/ftbsc/lll/processor/annotations/Target.java +++ b/src/main/java/ftbsc/lll/processor/annotations/Target.java @@ -20,9 +20,10 @@ public @interface Target { /** * When set to false, tells the processor to first try to match a single method by name, * and to only check parameters if further clarification is needed. - * @implNote While non-strict mode is more computationally efficient, it's ultimately not - * relevant, as it only matters at compile time. Do not set this to false unless - * you know what you're doing. + * While non-strict mode is more computationally efficient, it's ultimately not + * relevant, as it only matters at compile time. Do not set this to false unless + * you know what you're doing. + * @return whether strict mode is to be used * @since 0.3.0 */ boolean strict() default true; |