You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2020/08/10 23:37:09 UTC

[groovy] branch master updated: Add "@since" to tweak javadoc

This is an automated email from the ASF dual-hosted git repository.

sunlan 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 b320066  Add "@since" to tweak javadoc
b320066 is described below

commit b32006660cfa578690a3420f9cb25b3bb6f43665
Author: Daniel Sun <su...@apache.org>
AuthorDate: Tue Aug 11 07:37:01 2020 +0800

    Add "@since" to tweak javadoc
---
 src/main/java/groovy/transform/NamedVariant.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/groovy/transform/NamedVariant.java b/src/main/java/groovy/transform/NamedVariant.java
index 8cd9abb..ed5bf1b 100644
--- a/src/main/java/groovy/transform/NamedVariant.java
+++ b/src/main/java/groovy/transform/NamedVariant.java
@@ -127,6 +127,8 @@ public @interface NamedVariant {
 
     /**
      * If true, will use {@code as} to convert map parameter to required class
+     *
+     * @since 3.0.6
      */
     boolean coerce() default false;
 }