Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -4,7 +4,7 @@
4 4 import java.util.*;
5 5
6 6 import org.litesoft.bo.*;
7 - import org.litesoft.core.util.*;
7 + import org.litesoft.core.typeutils.*;
8 8
9 9 public abstract class AbstractChangeTrackingObject implements IChangeTrackingObject
10 10 {
  @@ -150,7 +150,7 @@
150 150 String zName = pAttribute.getName();
151 151 Object zCurValue = this.getAttributeValue( zName );
152 152 Object zNewValue = pThem.getAttributeValue( zName );
153 - if ( !UtilsCommon.areEqual( zCurValue, zNewValue ) )
153 + if ( !Objects.areEqual( zCurValue, zNewValue ) )
154 154 {
155 155 ChangeControlledBoAttribute zCCA = getChangeControlledBoAttribute( pAttribute );
156 156
  @@ -241,7 +241,7 @@
241 241 public final boolean verifyMutabilityOnChange( BoAttribute pBoAttribute, Object pOldValue, Object pNewValue )
242 242 throws UnsupportedOperationException
243 243 {
244 - if ( UtilsCommon.areEqual( pOldValue, pNewValue ) )
244 + if ( Objects.areEqual( pOldValue, pNewValue ) )
245 245 {
246 246 return false;
247 247 }