Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/def/nonpublic/support/FormMetaData.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.core.util.*;
7 8 import org.litesoft.ui.def.nonpublic.*;
8 9 import org.litesoft.ui.support.*;
  @@ -146,9 +147,9 @@
146 147 {
147 148 return (this == them) || //
148 149 ((them != null) //
149 - && UtilsCommon.areNonArraysEqual( this.mUniqueID, them.mUniqueID ) //
150 - && UtilsCommon.areNonArraysEqual( this.mRootType, them.mRootType ) //
151 - && UtilsCommon.areNonArraysEqual( this.mRelAttributeRef, them.mRelAttributeRef ) //
150 + && Objects.areNonArraysEqual( this.mUniqueID, them.mUniqueID ) //
151 + && Objects.areNonArraysEqual( this.mRootType, them.mRootType ) //
152 + && Objects.areNonArraysEqual( this.mRelAttributeRef, them.mRelAttributeRef ) //
152 153 );
153 154 }
154 155