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/11/23 00:47:51 UTC

[groovy] branch GROOVY_3_0_X updated: deprecate unused class

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

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


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new d781350  deprecate unused class
d781350 is described below

commit d781350f865dc16470c3b08daf85f5063a90e7eb
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sat Nov 23 10:47:39 2019 +1000

    deprecate unused class
---
 src/main/java/groovy/lang/ParameterArray.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/groovy/lang/ParameterArray.java b/src/main/java/groovy/lang/ParameterArray.java
index ba86c8b..3cc0f00 100644
--- a/src/main/java/groovy/lang/ParameterArray.java
+++ b/src/main/java/groovy/lang/ParameterArray.java
@@ -21,6 +21,7 @@ package groovy.lang;
 /**
  * Distinguish a parameter array from Object[].
  */
+@Deprecated
 public class ParameterArray {
 
     private final Object parameters;