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/12/25 15:41:27 UTC

[groovy] branch master updated: Add @since to 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 1910db9  Add @since to javadoc
1910db9 is described below

commit 1910db908e976b3636c4e6d3a28e402e7db3c09e
Author: Daniel Sun <su...@apache.org>
AuthorDate: Fri Dec 25 23:41:12 2020 +0800

    Add @since to javadoc
---
 .../org/apache/groovy/ginq/provider/collection/runtime/Queryable.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/Queryable.java b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/Queryable.java
index 202494f..cfc422d 100644
--- a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/Queryable.java
+++ b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/Queryable.java
@@ -47,6 +47,7 @@ public interface Queryable<T> {
 
     /**
      * Represents the empty Queryable instance
+     * @since 4.0.0
      */
     Queryable EMPTY_QUERYABLE = from(new Object[0]);
 
@@ -55,6 +56,7 @@ public interface Queryable<T> {
      *
      * @param <T> the type of element
      * @return the empty Queryable instance
+     * @since 4.0.0
      */
     static <T> Queryable<T> emptyQueryable() {
         return (Queryable<T>) EMPTY_QUERYABLE;