admin
2019-07-31 9738d9fe341d277fa5d1567de2a8c81177d959f4
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;