This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 5705e38 GROOVY-4993: add @since tag to javadoc
5705e38 is described below
commit 5705e38513e56207ab0ce4ef39c963f1c01605a7
Author: Paul King <[email protected]>
AuthorDate: Fri Aug 16 21:30:41 2019 +1000
GROOVY-4993: add @since tag to javadoc
---
src/main/java/groovy/transform/Memoized.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/main/java/groovy/transform/Memoized.java
b/src/main/java/groovy/transform/Memoized.java
index 051cd81..6ba204d 100644
--- a/src/main/java/groovy/transform/Memoized.java
+++ b/src/main/java/groovy/transform/Memoized.java
@@ -124,6 +124,8 @@ import java.lang.annotation.Target;
* // increment is invoked so incrementChange is true.
* assert incrementChange
* </pre>
+ *
+ * @since 2.2.0
*/
@java.lang.annotation.Documented
@Retention(RetentionPolicy.SOURCE)