You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2018/12/01 15:06:02 UTC

groovy git commit: Remove `StringUtils`'s `@author` and `@since` info added by accident.

Repository: groovy
Updated Branches:
  refs/heads/master 12d820627 -> b5d4d7ab8


Remove `StringUtils`'s `@author` and `@since` info added by accident.


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/b5d4d7ab
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/b5d4d7ab
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/b5d4d7ab

Branch: refs/heads/master
Commit: b5d4d7ab843961ef6f360a301e7df71d2b3b858b
Parents: 12d8206
Author: Daniel Sun <su...@apache.org>
Authored: Sat Dec 1 23:05:54 2018 +0800
Committer: Daniel Sun <su...@apache.org>
Committed: Sat Dec 1 23:05:54 2018 +0800

----------------------------------------------------------------------
 .../java/org/apache/groovy/parser/antlr4/util/StringUtils.java    | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/b5d4d7ab/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/util/StringUtils.java
----------------------------------------------------------------------
diff --git a/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/util/StringUtils.java b/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/util/StringUtils.java
index 1adc469..cc097f3 100644
--- a/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/util/StringUtils.java
+++ b/subprojects/parser-antlr4/src/main/java/org/apache/groovy/parser/antlr4/util/StringUtils.java
@@ -28,8 +28,6 @@ import java.util.regex.Pattern;
 /**
  * Utilities for handling strings
  *
- * @author  <a href="mailto:realbluesun@hotmail.com">Daniel.Sun</a>
- * Created on    2016/08/20
  */
 public class StringUtils {
 	private static final String BACKSLASH = "\\";
@@ -241,7 +239,6 @@ public class StringUtils {
 	 *
 	 * @param cs  the CharSequence to check, may be null
 	 * @return {@code true} if the CharSequence is empty or null
-	 * @since 3.0 Changed signature from isEmpty(String) to isEmpty(CharSequence)
 	 */
 	public static boolean isEmpty(final CharSequence cs) {
 		return cs == null || cs.length() == 0;