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 44dfe9059 Added empty string example for isMixedCase method. 44dfe9059 is described below commit 44dfe9059771bcf338e9ba90d69f102842243ef5 Author: Siva Kumar Edupuganti <esivakuma...@gmail.com> AuthorDate: Mon Jan 2 13:15:16 2023 -0700 Added empty string example for isMixedCase method. --- src/main/java/org/apache/commons/lang3/StringUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 0b6fed66c..0f589516d 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -3605,6 +3605,7 @@ public class StringUtils { * <pre> * StringUtils.isMixedCase(null) = false * StringUtils.isMixedCase("") = false + * StringUtils.isMixedCase(" ") = false * StringUtils.isMixedCase("ABC") = false * StringUtils.isMixedCase("abc") = false * StringUtils.isMixedCase("aBc") = true