liuxue
2021-05-19 e2bc95e845684f35d3c09f0ffc935aeedbf55259
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;
    }
}