You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/07/18 11:34:10 UTC

[groovy] branch groovy9198 created (now d17f498)

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

paulk pushed a change to branch groovy9198
in repository https://gitbox.apache.org/repos/asf/groovy.git.


      at d17f498  fix @since numbering (we don't track pre-releases in those numbers)

This branch includes the following new commits:

     new d17f498  fix @since numbering (we don't track pre-releases in those numbers)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[groovy] 01/01: fix @since numbering (we don't track pre-releases in those numbers)

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch groovy9198
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit d17f498d42facf95a03e92429b3f1aea30f01177
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Jul 18 21:33:57 2019 +1000

    fix @since numbering (we don't track pre-releases in those numbers)
---
 .../codehaus/groovy/runtime/DefaultGroovyMethods.java    | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java b/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
index 2d404a8..2917c29 100644
--- a/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
+++ b/src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
@@ -11843,7 +11843,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self a List
      * @see Collections#shuffle(List)
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static void shuffle(List<?> self) {
         Collections.shuffle(self);
@@ -11864,7 +11864,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self a List
      * @see Collections#shuffle(List)
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static void shuffle(List<?> self, Random rnd) {
         Collections.shuffle(self, rnd);
@@ -11882,7 +11882,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self a List
      * @see Collections#shuffle(List)
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> List<T> shuffled(List<T> self) {
         List<T> copy = new ArrayList(self);
@@ -11903,7 +11903,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self a List
      * @see Collections#shuffle(List)
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> List<T> shuffled(List<T> self, Random rnd) {
         List<T> copy = new ArrayList(self);
@@ -11923,7 +11923,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      * </pre>
      *
      * @param self an array
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> void shuffle(T[] self) {
         Random rnd = r;
@@ -11948,7 +11948,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      * </pre>
      *
      * @param self an array
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> void shuffle(T[] self, Random rnd) {
         for (int i = 0; i < self.length-1; i++) {
@@ -11970,7 +11970,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self an array
      * @return the shuffled array
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> T[] shuffled(T[] self) {
         Random rnd = r;
@@ -11992,7 +11992,7 @@ public class DefaultGroovyMethods extends DefaultGroovyMethodsSupport {
      *
      * @param self an array
      * @return the shuffled array
-     * @since 3.0.0-beta-3
+     * @since 3.0.0
      */
     public static <T> T[] shuffled(T[] self, Random rnd) {
         T[] result = self.clone();