discord-jadx/app/src/main/java/c/i/a/c/f2/k.java

35 lines
804 B
Java

package c.i.a.c.f2;
import androidx.annotation.Nullable;
import java.util.Arrays;
/* compiled from: TrackSelectionArray */
public final class k {
public final int a;
public final j[] b;
/* renamed from: c reason: collision with root package name */
public int f858c;
public k(j... jVarArr) {
this.b = jVarArr;
this.a = jVarArr.length;
}
public boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj == null || k.class != obj.getClass()) {
return false;
}
return Arrays.equals(this.b, ((k) obj).b);
}
public int hashCode() {
if (this.f858c == 0) {
this.f858c = 527 + Arrays.hashCode(this.b);
}
return this.f858c;
}
}