Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/support/nonpublic/CreditsData.java

Diff revisions: vs.
  @@ -4,6 +4,7 @@
4 4 import java.util.*;
5 5
6 6 import org.litesoft.core.simpletypes.temporal.*;
7 + import org.litesoft.core.typeutils.*;
7 8 import org.litesoft.core.util.*;
8 9
9 10 public class CreditsData implements Comparable
  @@ -71,7 +72,7 @@
71 72 return (this == them) || ((them != null) && //
72 73 this.mWho.equals( them.mWho ) && //
73 74 this.mStartDate.equals( them.mStartDate ) && //
74 - UtilsCommon.areNonArraysEqual( this.mEndDate, them.mEndDate ));
75 + Objects.areNonArraysEqual( this.mEndDate, them.mEndDate ));
75 76 }
76 77
77 78 public boolean equals( Object o )