Github user britter commented on a diff in the pull request:

    https://github.com/apache/commons-lang/pull/193#discussion_r80357934
  
    --- Diff: src/main/java/org/apache/commons/lang3/StringUtils.java ---
    @@ -358,6 +387,36 @@ public static boolean isAnyBlank(final CharSequence... 
css) {
         }
         
         /**
    +     * <p>Checks if any one of the CharSequences are not blank ("") or 
null and not whitespace only..</p>
    +     *
    +     * <pre>
    +     * StringUtils.isAnyNotBlank(null)             = false
    +     * StringUtils.isAnyNotBlank(null, "foo")      = true
    +     * StringUtils.isAnyNotBlank(null, null)       = false
    +     * StringUtils.isAnyNotBlank("", "bar")        = true
    +     * StringUtils.isAnyNotBlank("bob", "")        = true
    +     * StringUtils.isAnyNotBlank("  bob  ", null)  = true
    +     * StringUtils.isAnyNotBlank(" ", "bar")       = true
    +     * StringUtils.isAnyNotBlank("foo", "bar")     = false
    +     * </pre>
    +     *
    +     * @param css  the CharSequences to check, may be null or empty
    +     * @return {@code true} if any of the CharSequences are not blank or 
null or whitespace only
    +     * @since 3.5
    +     */
    +    public static boolean isAnyNotBlank(final CharSequence... css) {
    +      if (ArrayUtils.isEmpty(css)) {
    +        return true;
    --- End diff --
    
    See above


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to