diff --git a/0001-Generate-max.-one-deprecated-annotation-per-method.patch b/0001-Generate-max.-one-deprecated-annotation-per-method.patch deleted file mode 100644 index 08deca3..0000000 --- a/0001-Generate-max.-one-deprecated-annotation-per-method.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 4a9fc6a7992e8623956dee6c8cebd0b224968418 Mon Sep 17 00:00:00 2001 -From: Zbynek Konecny -Date: Wed, 20 Apr 2022 17:01:00 +0200 -Subject: [PATCH 1/2] Generate max. one deprecated annotation per method - ---- - .../resources/templates/gwt/SimpleCharStream.template | 10 ++++------ - 1 file changed, 4 insertions(+), 6 deletions(-) - -diff --git a/src/main/resources/templates/gwt/SimpleCharStream.template b/src/main/resources/templates/gwt/SimpleCharStream.template -index 9c88437..a1de1e3 100644 ---- a/src/main/resources/templates/gwt/SimpleCharStream.template -+++ b/src/main/resources/templates/gwt/SimpleCharStream.template -@@ -215,14 +215,13 @@ ${SUPPORT_CLASS_VISIBILITY_PUBLIC?public :}class SimpleCharStream - return c; - } - --#if GENERATE_ANNOTATIONS -- @Deprecated --#fi - /** - * @deprecated - * @see #getEndColumn - */ -+#if GENERATE_ANNOTATIONS - @Deprecated -+#fi - ${PREFIX}public int getColumn() { - #if KEEP_LINE_COLUMN - return bufcolumn[bufpos]; -@@ -231,14 +230,13 @@ ${SUPPORT_CLASS_VISIBILITY_PUBLIC?public :}class SimpleCharStream - #fi - } - --#if GENERATE_ANNOTATIONS -- @Deprecated --#fi - /** - * @deprecated - * @see #getEndLine - */ -+#if GENERATE_ANNOTATIONS - @Deprecated -+#fi - ${PREFIX}public int getLine() { - #if KEEP_LINE_COLUMN - return bufline[bufpos]; --- -2.36.0 - diff --git a/0002-Fix-annotations-for-JavaCharStream.patch b/0002-Fix-annotations-for-JavaCharStream.patch deleted file mode 100644 index efad64a..0000000 --- a/0002-Fix-annotations-for-JavaCharStream.patch +++ /dev/null @@ -1,281 +0,0 @@ -From 1e076c05b3739f12fc40e3b652183d770bfcc305 Mon Sep 17 00:00:00 2001 -From: Zbynek Konecny -Date: Mon, 25 Apr 2022 19:17:30 +0200 -Subject: [PATCH 2/2] Fix annotations for JavaCharStream - ---- - pom.xml | 21 ++++- - .../templates/gwt/JavaCharStream.template | 12 ++- - test/gwtTemplate/Parser.jj | 76 +++++++++++++++++++ - test/gwtUnicodeTemplate/Parser.jj | 76 +++++++++++++++++++ - 4 files changed, 175 insertions(+), 10 deletions(-) - create mode 100644 test/gwtTemplate/Parser.jj - create mode 100644 test/gwtUnicodeTemplate/Parser.jj - -diff --git a/pom.xml b/pom.xml -index 1f0b371..aedaed9 100644 ---- a/pom.xml -+++ b/pom.xml -@@ -310,7 +310,7 @@ - - - -- - - -@@ -647,7 +662,7 @@ - - - --