Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -2,7 +2,6 @@
2 2 package org.litesoft.ui.def.nonpublic.support;
3 3
4 4 import org.litesoft.core.typeutils.*;
5 - import org.litesoft.core.util.*;
6 5 import org.litesoft.ui.support.*;
7 6
8 7 public class LabelMetaData
  @@ -44,7 +43,7 @@
44 43 public boolean equals( LabelMetaData them )
45 44 {
46 45 return (this == them) || ((them != null) //
47 - && UtilsCommon.areNonArraysEqual( this.mLabelID, them.mLabelID ) //
46 + && Objects.areNonArraysEqual( this.mLabelID, them.mLabelID ) //
48 47 );
49 48 }
50 49