Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/core/util/HintValidator.java

Diff revisions: vs.
  @@ -1,6 +1,8 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.core.util;
3 3
4 + import org.litesoft.core.typeutils.*;
5 +
4 6 public interface HintValidator
5 7 {
6 8 /**
  @@ -57,8 +59,8 @@
57 59 public boolean equals( CategoryGroup them )
58 60 {
59 61 return (this == them) || ((them != null) //
60 - && UtilsCommon.areNonArraysEqual( this.mCategory, them.mCategory ) //
61 - && UtilsCommon.areNonArraysEqual( this.mGroup, them.mGroup ) //
62 + && Objects.areNonArraysEqual( this.mCategory, them.mCategory ) //
63 + && Objects.areNonArraysEqual( this.mGroup, them.mGroup ) //
62 64 );
63 65 }
64 66