Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 822 for /trunk/Java/core/Anywhere/src/org/litesoft/bo/change/SimpleChangeEntry.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.bo.change;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public final class SimpleChangeEntry
7 7 {
  @@ -34,7 +34,7 @@
34 34
35 35 private boolean equalsNotNullNotUs( SimpleChangeEntry pThem )
36 36 {
37 - return UtilsCommon.areEqual( this.mOriginalValue, pThem.mOriginalValue );
37 + return Objects.areEqual( this.mOriginalValue, pThem.mOriginalValue );
38 38 }
39 39
40 40 public int hashCode()