client_Hale
2019-01-09 14a766de7ddaf2c5e6e0fc0e1d2040fe24bfa72f
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;
    }
}