Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/server/CurrentUserAccessor.java

Diff revisions: vs.
  @@ -3,10 +3,10 @@
3 3 import org.litesoft.bo.views.*;
4 4 import org.litesoft.changemanagement.*;
5 5 import org.litesoft.core.*;
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.initfrom.client.boviews.*;
7 8 import org.litesoft.initfrom.server.boviews.podataproviders.*;
8 9 import org.litesoft.initfrom.server.pos.*;
9 - import org.litesoft.util.*;
10 10
11 11 public class CurrentUserAccessor implements ServerStateChangedListener
12 12 {
  @@ -89,7 +89,7 @@
89 89 zOld = mPO;
90 90 zNew = mPO = pPO;
91 91 }
92 - if ( !Utils.areNonArraysEqual( zOld, zNew ) )
92 + if ( !Objects.areNonArraysEqual( zOld, zNew ) )
93 93 {
94 94 if ( zOld != null )
95 95 {
  @@ -164,8 +164,8 @@
164 164 public boolean inSync() // Only called when Both are !null
165 165 {
166 166 return !mStale && //
167 - Utils.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
168 - Utils.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
167 + Objects.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
168 + Objects.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
169 169 }
170 170 }
171 171 }