hch
2025-04-29 352babe80b284339d9b5cc6739fe9ce723c61a39
Project/app/src/main/java/com/secondworld/univeralsdk/UniversalUtil.java
@@ -389,4 +389,13 @@
        return -1;
    }
    public static boolean isEmpty(String s) {
        if (null == s)
            return true;
        if (s.length() == 0)
            return true;
        if (s.trim().length() == 0)
            return true;
        return false;
    }
}