yujian
2019-09-27 b2cff7a3e9d5cebacef4866c5993e0be89ff5b00
utils/src/main/java/org/yeshi/utils/StringUtil.java
@@ -67,7 +67,7 @@
    * @return
    */
   public static boolean isNullOrEmpty(String text) {
      if (text == null || text.length() == 0 || text.equalsIgnoreCase("null")) {
      if (text == null || text.trim().length() == 0 || text.equalsIgnoreCase("null")) {
         return true;
      }
      return false;