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 2020/05/28 04:40:51 UTC

[groovy] branch master updated: clean up some legacy comments

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

paulk 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 0eddad4  clean up some legacy comments
0eddad4 is described below

commit 0eddad417dde609ca435153447ccd9e1a0f60ec5
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu May 28 13:01:07 2020 +1000

    clean up some legacy comments
---
 src/test/groovy/grape/GrapeClassLoaderTest.groovy                   | 6 ------
 src/test/groovy/lang/GroovyShellTest2.groovy                        | 3 ---
 .../org/codehaus/groovy/reflection/utils/ReflectionUtilsTest.groovy | 6 ------
 .../src/test/groovy/groovy/json/JsonSlurperCharSourceTest.groovy    | 3 ---
 .../src/test/groovy/groovy/json/JsonSlurperIndexOverlayTest.groovy  | 3 ---
 .../src/test/groovy/groovy/json/JsonSlurperLaxTest.groovy           | 3 ---
 .../main/java/org/apache/groovy/parser/antlr4/ModifierManager.java  | 2 --
 .../src/main/java/org/codehaus/groovy/ast/ModifierNode.java         | 2 --
 .../parser-antlr4/src/test/resources/core/Comments_01.groovy        | 2 +-
 .../src/test/resources/core/PackageDeclaration_05.groovy            | 3 ---
 10 files changed, 1 insertion(+), 32 deletions(-)

diff --git a/src/test/groovy/grape/GrapeClassLoaderTest.groovy b/src/test/groovy/grape/GrapeClassLoaderTest.groovy
index dc2ccfa..0737390 100644
--- a/src/test/groovy/grape/GrapeClassLoaderTest.groovy
+++ b/src/test/groovy/grape/GrapeClassLoaderTest.groovy
@@ -20,12 +20,6 @@ package groovy.grape
 
 import groovy.test.GroovyTestCase
 
-/**
- * Created by IntelliJ IDEA.
- * User: Danno
- * Date: Jan 20, 2008
- * Time: 5:14:11 PM
- */
 class GrapeClassLoaderTest extends GroovyTestCase {
 
     public GrapeClassLoaderTest() {
diff --git a/src/test/groovy/lang/GroovyShellTest2.groovy b/src/test/groovy/lang/GroovyShellTest2.groovy
index bdd3b64..995c385 100644
--- a/src/test/groovy/lang/GroovyShellTest2.groovy
+++ b/src/test/groovy/lang/GroovyShellTest2.groovy
@@ -20,9 +20,6 @@ package groovy.lang
 
 import groovy.test.GroovyTestCase
 
-/**
- * Created by jim on 8/14/14.
- */
 class GroovyShellTest2 extends GroovyTestCase {
     void testBindingsInBaseScriptInitializers() {
         def shell = new GroovyShell();
diff --git a/src/test/org/codehaus/groovy/reflection/utils/ReflectionUtilsTest.groovy b/src/test/org/codehaus/groovy/reflection/utils/ReflectionUtilsTest.groovy
index acb03d4..3f675ab 100644
--- a/src/test/org/codehaus/groovy/reflection/utils/ReflectionUtilsTest.groovy
+++ b/src/test/org/codehaus/groovy/reflection/utils/ReflectionUtilsTest.groovy
@@ -24,12 +24,6 @@ import org.codehaus.groovy.reflection.ReflectionUtils
 // note, this must be in a package other than org.codehause.groovy.reflection or else
 // the tests will incorrectly miss the target
 
-/**
- * Created by IntelliJ IDEA.
- * User: Danno.Ferrin
- * Date: Jun 24, 2008
- * Time: 9:45:15 PM
- */
 class ReflectionUtilsTest extends GroovyTestCase {
 
     private Class privateCaller() {
diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperCharSourceTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperCharSourceTest.groovy
index 19bff4b..1359d06 100644
--- a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperCharSourceTest.groovy
+++ b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperCharSourceTest.groovy
@@ -18,9 +18,6 @@
  */
 package groovy.json
 
-/**
- * Created by Richard on 2/2/14.
- */
 class JsonSlurperCharSourceTest extends JsonSlurperTest {
 
     void setUp() {
diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperIndexOverlayTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperIndexOverlayTest.groovy
index fc4978f..ce1a443 100644
--- a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperIndexOverlayTest.groovy
+++ b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperIndexOverlayTest.groovy
@@ -18,9 +18,6 @@
  */
 package groovy.json
 
-/**
- * Created by Richard on 2/2/14.
- */
 class JsonSlurperIndexOverlayTest extends JsonSlurperTest {
 
     void setUp() {
diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperLaxTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperLaxTest.groovy
index ca89ef0..2a11c6a 100644
--- a/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperLaxTest.groovy
+++ b/subprojects/groovy-json/src/test/groovy/groovy/json/JsonSlurperLaxTest.groovy
@@ -18,9 +18,6 @@
  */
 package groovy.json
 
-/**
- * Created by Richard on 2/2/14.
- */
 class JsonSlurperLaxTest extends JsonSlurperTest {
 
     void setUp() {
diff --git a/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/ModifierManager.java b/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/ModifierManager.java
index 0c232cf..5ec717f 100644
--- a/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/ModifierManager.java
+++ b/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/ModifierManager.java
@@ -44,8 +44,6 @@ import static org.apache.groovy.parser.antlr4.GroovyLangParser.VOLATILE;
 
 /**
  * Process modifiers for AST nodes
- * <p>
- * Created by Daniel.Sun on 2016/08/27.
  */
 class ModifierManager {
     private static final Map<Class, List<Integer>> INVALID_MODIFIERS_MAP = Maps.of(
diff --git a/subprojects/parser-antlr4/src/main/java/org/codehaus/groovy/ast/ModifierNode.java b/subprojects/parser-antlr4/src/main/java/org/codehaus/groovy/ast/ModifierNode.java
index 2111f24..e8a2f9b 100644
--- a/subprojects/parser-antlr4/src/main/java/org/codehaus/groovy/ast/ModifierNode.java
+++ b/subprojects/parser-antlr4/src/main/java/org/codehaus/groovy/ast/ModifierNode.java
@@ -42,8 +42,6 @@ import static org.codehaus.groovy.runtime.DefaultGroovyMethods.asBoolean;
 
 /**
  * Represents a modifier
- * <p>
- * Created by Daniel.Sun on 2016/08/23.
  */
 public class ModifierNode extends ASTNode {
     private Integer type;
diff --git a/subprojects/parser-antlr4/src/test/resources/core/Comments_01.groovy b/subprojects/parser-antlr4/src/test/resources/core/Comments_01.groovy
index c38c6fb..7c4d15c 100644
--- a/subprojects/parser-antlr4/src/test/resources/core/Comments_01.groovy
+++ b/subprojects/parser-antlr4/src/test/resources/core/Comments_01.groovy
@@ -19,7 +19,7 @@
  */
 
 /**
- * Created by Daniel.Sun on 2016/08/16.
+ * Created on 2016/08/16.
  */
 
 // this is a line comment
diff --git a/subprojects/parser-antlr4/src/test/resources/core/PackageDeclaration_05.groovy b/subprojects/parser-antlr4/src/test/resources/core/PackageDeclaration_05.groovy
index c0c5d62..b4ba26d 100644
--- a/subprojects/parser-antlr4/src/test/resources/core/PackageDeclaration_05.groovy
+++ b/subprojects/parser-antlr4/src/test/resources/core/PackageDeclaration_05.groovy
@@ -18,6 +18,3 @@
  *  under the License.
  */
 package com.groovyhelp.core;
-/**
- * Created by Daniel.Sun on 2016/08/17.
- */
\ No newline at end of file