Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/def/nonpublic/support/ActionMetaData.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
  @@ -42,7 +43,7 @@
42 43 public boolean equals( ActionMetaData them )
43 44 {
44 45 return (this == them) || ((them != null) //
45 - && UtilsCommon.areNonArraysEqual( this.mActionID, them.mActionID ) //
46 + && Objects.areNonArraysEqual( this.mActionID, them.mActionID ) //
46 47 && UtilsCommon.areNonArraysEqual( this.isDisabled(), them.isDisabled() ) //
47 48 );
48 49 }