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;