47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
/* renamed from: o.Pdc, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C0820Pdc {
|
||
|
private final int b;
|
||
|
public final boolean d;
|
||
|
|
||
|
public C0820Pdc(int i, boolean z) {
|
||
|
this.b = i;
|
||
|
this.d = z;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
int i = this.b;
|
||
|
boolean z = this.d;
|
||
|
StringBuilder sb = new StringBuilder("TcVersion(tcLatestVersion=");
|
||
|
sb.append(i);
|
||
|
sb.append(", tcAcceptRequired=");
|
||
|
sb.append(z);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Multi-variable type inference failed */
|
||
|
public final int hashCode() {
|
||
|
int hashCode = Integer.hashCode(this.b);
|
||
|
boolean z = this.d;
|
||
|
int i = z;
|
||
|
if (z != 0) {
|
||
|
i = 1;
|
||
|
}
|
||
|
return (hashCode * 31) + i;
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C0820Pdc)) {
|
||
|
return false;
|
||
|
}
|
||
|
C0820Pdc c0820Pdc = (C0820Pdc) obj;
|
||
|
return this.b == c0820Pdc.b && this.d == c0820Pdc.d;
|
||
|
}
|
||
|
}
|