admin
2019-12-18 3a7a632f98016f0041366c579517a05ca06fa903
fanli/src/main/java/com/yeshi/fanli/util/StringUtil.java
@@ -112,7 +112,7 @@
   // �Ƿ��ǿյ��ַ�
   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;