diff options
Diffstat (limited to 'src/core/lombok/Cleanup.java')
-rw-r--r-- | src/core/lombok/Cleanup.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/Cleanup.java b/src/core/lombok/Cleanup.java index c2430682..528855cd 100644 --- a/src/core/lombok/Cleanup.java +++ b/src/core/lombok/Cleanup.java @@ -72,6 +72,6 @@ import java.lang.annotation.Target; @Target(ElementType.LOCAL_VARIABLE) @Retention(RetentionPolicy.SOURCE) public @interface Cleanup { - /** The name of the method that cleans up the resource. By default, 'close'. The method must not have any parameters. */ + /** @return The name of the method that cleans up the resource. By default, 'close'. The method must not have any parameters. */ String value() default "close"; } |