Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,6 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.ui.def.nonpublic.support;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 6 import org.litesoft.ui.def.*;
6 7
  @@ -51,7 +52,7 @@
51 52 {
52 53 return (this == them) || ((them != null) //
53 54 && (this.mCaseIndex == them.mCaseIndex) //
54 - && UtilsCommon.areNonArraysEqual( this.mForm, them.mForm ) //
55 + && Objects.areNonArraysEqual( this.mForm, them.mForm ) //
55 56 );
56 57 }
57 58