Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/Server/src/org/litesoft/security/AbstractCurrentSecurityPOAccessor.java

Diff revisions: vs.
  @@ -5,7 +5,7 @@
5 5 import org.litesoft.bo.views.server.*;
6 6 import org.litesoft.changemanagement.*;
7 7 import org.litesoft.core.*;
8 - import org.litesoft.util.*;
8 + import org.litesoft.core.typeutils.*;
9 9
10 10 public abstract class AbstractCurrentSecurityPOAccessor<PO extends SecurityPO<PO>, VO extends SecurityVO<VO>> implements ServerStateChangedListener
11 11 {
  @@ -75,7 +75,7 @@
75 75 zOld = mPO;
76 76 zNew = mPO = pPO;
77 77 }
78 - if ( !Utils.areNonArraysEqual( zOld, zNew ) )
78 + if ( !Objects.areNonArraysEqual( zOld, zNew ) )
79 79 {
80 80 if ( zOld != null )
81 81 {
  @@ -121,8 +121,8 @@
121 121 public boolean inSync() // Only called when Both are !null
122 122 {
123 123 return !mStale && //
124 - Utils.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
125 - Utils.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
124 + Objects.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
125 + Objects.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
126 126 }
127 127
128 128 @Override