Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/server/CurrentRestrictedResourceAccessor.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 CurrentRestrictedResourceAccessor 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 {
  @@ -152,8 +152,8 @@
152 152 public boolean inSync() // Only called when Both are !null
153 153 {
154 154 return !mStale && //
155 - Utils.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
156 - Utils.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
155 + Objects.areNonArraysEqual( mPO.getID(), mVO.getID() ) && //
156 + Objects.areNonArraysEqual( mPO.getRecordVersion(), mVO.getRecordVersion() );
157 157 }
158 158 }
159 159 }