44 lines
1.0 KiB
Java
44 lines
1.0 KiB
Java
package o;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class Hvk {
|
|
public String a;
|
|
public int b;
|
|
|
|
public Hvk(int i, String str) {
|
|
this.b = i;
|
|
this.a = str;
|
|
}
|
|
|
|
public /* synthetic */ Hvk() {
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.b;
|
|
String str = this.a;
|
|
StringBuilder sb = new StringBuilder("AppConfigISprint(toggleISprintPayShield=");
|
|
sb.append(i);
|
|
sb.append(", juristicTileVersion=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = Integer.hashCode(this.b);
|
|
String str = this.a;
|
|
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Hvk)) {
|
|
return false;
|
|
}
|
|
Hvk hvk = (Hvk) obj;
|
|
return this.b == hvk.b && C14957gcv.b((Object) this.a, (Object) hvk.a);
|
|
}
|
|
}
|