|
@@ -79,7 +79,7 @@ public class StrKit {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public static boolean notBlank(String... strings) {
|
|
public static boolean notBlank(String... strings) {
|
|
|
- if (strings == null) {
|
|
|
|
|
|
|
+ if (strings == null || strings.length == 0) {
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
for (String str : strings) {
|
|
for (String str : strings) {
|