You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/03/12 16:34:02 UTC

[lang] LANG-1293: Add StringUtils#isAllEmpty and #isAllBlank methods

Repository: commons-lang
Updated Branches:
  refs/heads/master 3ce7f9eec -> 4282efae5


LANG-1293: Add StringUtils#isAllEmpty and #isAllBlank methods

fix error in javadoc

(side effects: close #221, close #197)


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/4282efae
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/4282efae
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/4282efae

Branch: refs/heads/master
Commit: 4282efae5f4ab456cef3acac5574f13f4f450b9e
Parents: 3ce7f9e
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Mar 12 17:33:53 2017 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Mar 12 17:33:53 2017 +0100

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/StringUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/4282efae/src/main/java/org/apache/commons/lang3/StringUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java
index 56a1c47..2250595 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -426,7 +426,7 @@ public class StringUtils {
     /**
      * <p>Checks if all of the CharSequences are empty (""), null or whitespace only.</p>
      *
-     * </p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
+     * <p>Whitespace is defined by {@link Character#isWhitespace(char)}.</p>
      *
      * <pre>
      * StringUtils.isAllBlank(null)             = true