Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/def/nonpublic/support/AbstractFormUsage.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.support.*;
6 7
  @@ -58,11 +59,11 @@
58 59 protected final boolean LLequals( AbstractFormUsage pThem )
59 60 {
60 61 return (pThem != null) && //
61 - UtilsCommon.areNonArraysEqual( this.getRelAttributeRef(), pThem.getRelAttributeRef() ) && //
62 - UtilsCommon.areNonArraysEqual( this.getRootType(), pThem.getRootType() ) && //
62 + Objects.areNonArraysEqual( this.getRelAttributeRef(), pThem.getRelAttributeRef() ) && //
63 + Objects.areNonArraysEqual( this.getRootType(), pThem.getRootType() ) && //
63 64 UtilsCommon.areNonArraysEqual( this.isHot(), pThem.isHot() ) && //
64 - UtilsCommon.areNonArraysEqual( this.getIntendedUse(), pThem.getIntendedUse() ) && //
65 - UtilsCommon.areNonArraysEqual( this.getUniqueID(), pThem.getUniqueID() );
65 + Objects.areNonArraysEqual( this.getIntendedUse(), pThem.getIntendedUse() ) && //
66 + Objects.areNonArraysEqual( this.getUniqueID(), pThem.getUniqueID() );
66 67 }
67 68
68 69 public final int hashCode()