lixing 3 年之前
父节点
当前提交
2a4cec05b4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fm-common/src/main/java/com/persagy/fm/common/utils/ListUtil.java

+ 1 - 1
fm-common/src/main/java/com/persagy/fm/common/utils/ListUtil.java

@@ -58,7 +58,7 @@ public class ListUtil {
 
     public static <T> Boolean listChanged(List<T> listBefore, List<T> listAfter) {
         if (listBefore == null) {
-            return listAfter == null;
+            return listAfter != null;
         }
         if (listAfter == null) {
             return true;