Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
This commit is contained in:
commit
f2480a984f
|
@ -3463,15 +3463,15 @@ public class StringUtils {
|
|||
* @since 3.2
|
||||
*/
|
||||
public static boolean isAnyBlank(final CharSequence... css) {
|
||||
if (ArrayUtils.isEmpty(css)) {
|
||||
return false;
|
||||
}
|
||||
for (final CharSequence cs : css) {
|
||||
if (isBlank(cs)) {
|
||||
return true;
|
||||
if (ArrayUtils.isEmpty(css)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
for (final CharSequence cs : css) {
|
||||
if (isBlank(cs)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -3495,15 +3495,15 @@ public class StringUtils {
|
|||
* @since 3.2
|
||||
*/
|
||||
public static boolean isAnyEmpty(final CharSequence... css) {
|
||||
if (ArrayUtils.isEmpty(css)) {
|
||||
return false;
|
||||
}
|
||||
for (final CharSequence cs : css) {
|
||||
if (isEmpty(cs)) {
|
||||
return true;
|
||||
if (ArrayUtils.isEmpty(css)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
for (final CharSequence cs : css) {
|
||||
if (isEmpty(cs)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue