Fix formatting of isAnyBlank() and isAnyEmpty(). (#513)
This commit is contained in:
parent
412f1e13c9
commit
5f3a9a6eae
|
@ -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