sunhh hace 1 año
padre
commit
d30ad19ae6

+ 9 - 9
base-common/src/main/java/com/ozs/common/utils/StringUtils.java

@@ -108,9 +108,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
      * @param objects 要判断的对象数组
      *                * @return true:为空 false:非空
      */
-    public static boolean isEmpty(Object[] objects) {
-        return isNull(objects) || (objects.length == 0);
-    }
+//    public static boolean isEmpty(Object[] objects) {
+//        return isNull(objects) || (objects.length == 0);
+//    }
 
     /**
      * * 判断一个对象数组是否非空
@@ -128,9 +128,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
      * @param map 要判断的Map
      * @return true:为空 false:非空
      */
-    public static boolean isEmpty(Map<?, ?> map) {
-        return isNull(map) || map.isEmpty();
-    }
+//    public static boolean isEmpty(Map<?, ?> map) {
+//        return isNull(map) || map.isEmpty();
+//    }
 
     /**
      * * 判断一个Map是否为空
@@ -148,9 +148,9 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils {
      * @param str String
      * @return true:为空 false:非空
      */
-    public static boolean isEmpty(String str) {
-        return isNull(str) || NULLSTR.equals(str.trim());
-    }
+//    public static boolean isEmpty(String str) {
+//        return isNull(str) || NULLSTR.equals(str.trim());
+//    }
 
     /**
      * * 判断一个字符串是否为非空串