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/09/26 10:41:23 UTC

[groovy] branch GROOVY_3_0_X updated: add @Deprecated

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 2bf0452  add @Deprecated
2bf0452 is described below

commit 2bf045219865ba437f905ca2cd0ffc0a4bef4b5f
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Sep 26 20:41:10 2019 +1000

    add @Deprecated
---
 src/main/java/org/codehaus/groovy/ast/tools/Antlr2Utils.java | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/main/java/org/codehaus/groovy/ast/tools/Antlr2Utils.java b/src/main/java/org/codehaus/groovy/ast/tools/Antlr2Utils.java
index 922d4ee..0d67dcc 100644
--- a/src/main/java/org/codehaus/groovy/ast/tools/Antlr2Utils.java
+++ b/src/main/java/org/codehaus/groovy/ast/tools/Antlr2Utils.java
@@ -15,6 +15,12 @@ import org.codehaus.groovy.syntax.Reduction;
 import java.io.StringReader;
 import java.util.concurrent.atomic.AtomicReference;
 
+/**
+ * Utilities for working with the Antlr2 parser
+ *
+ * @deprecated will be removed when antlr2 parser is removed
+ */
+@Deprecated
 public class Antlr2Utils {
     private Antlr2Utils() {
     }