Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/support/ActionUsage.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.support;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 6 import org.litesoft.ui.def.nonpublic.support.*;
6 7
  @@ -44,8 +45,8 @@
44 45 public boolean equals( ActionUsage them )
45 46 {
46 47 return (this == them) || ((them != null) //
47 - && UtilsCommon.areNonArraysEqual( this.mActionID, them.mActionID ) //
48 - && UtilsCommon.areNonArraysEqual( this.getLabelID(), them.getLabelID() ) //
48 + && Objects.areNonArraysEqual( this.mActionID, them.mActionID ) //
49 + && Objects.areNonArraysEqual( this.getLabelID(), them.getLabelID() ) //
49 50 && UtilsCommon.areNonArraysEqual( this.isDisabled(), them.isDisabled() ) //
50 51 );
51 52 }