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

kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new b91960e  revise java-doc error
     new e962614  Merge pull request #421 from ScaldingBlood/master
b91960e is described below

commit b91960e94d68fcdc639f1a00ffe758b6acb7d0c8
Author: scaldingbl...@gmail.com <scaldingbl...@gmail.com>
AuthorDate: Thu May 9 10:47:31 2019 +0800

    revise java-doc error
---
 src/main/java/org/apache/commons/lang3/StringUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java 
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index 01dd329..940a6ee 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -3622,8 +3622,8 @@ public class StringUtils {
      * <pre>
      * StringUtils.splitPreserveAllTokens(null, *, *)            = null
      * StringUtils.splitPreserveAllTokens("", *, *)              = []
-     * StringUtils.splitPreserveAllTokens("ab de fg", null, 0)   = ["ab", 
"cd", "ef"]
-     * StringUtils.splitPreserveAllTokens("ab   de fg", null, 0) = ["ab", 
"cd", "ef"]
+     * StringUtils.splitPreserveAllTokens("ab de fg", null, 0)   = ["ab", 
"de", "fg"]
+     * StringUtils.splitPreserveAllTokens("ab   de fg", null, 0) = ["ab", "", 
"", "de", "fg"]
      * StringUtils.splitPreserveAllTokens("ab:cd:ef", ":", 0)    = ["ab", 
"cd", "ef"]
      * StringUtils.splitPreserveAllTokens("ab:cd:ef", ":", 2)    = ["ab", 
"cd:ef"]
      * StringUtils.splitPreserveAllTokens("ab   de fg", null, 2) = ["ab", "  
de fg"]

Reply via email to