56 lines
1.6 KiB
Java
56 lines
1.6 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JGT extends Pag {
|
|
public final boolean b;
|
|
public final String c;
|
|
public final String d;
|
|
|
|
public JGT(boolean z, String str, String str2) {
|
|
this.b = z;
|
|
this.c = str;
|
|
this.d = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
boolean z = this.b;
|
|
String str = this.c;
|
|
String str2 = this.d;
|
|
StringBuilder sb = new StringBuilder("PartnerRedirect(returnFlag=");
|
|
sb.append(z);
|
|
sb.append(", param=");
|
|
sb.append(str);
|
|
sb.append(", value=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
|
|
/* JADX WARN: Type inference failed for: r0v6 */
|
|
/* JADX WARN: Type inference failed for: r0v7 */
|
|
public final int hashCode() {
|
|
boolean z = this.b;
|
|
?? r0 = z;
|
|
if (z) {
|
|
r0 = 1;
|
|
}
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.d;
|
|
return (((r0 * 31) + hashCode) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof JGT)) {
|
|
return false;
|
|
}
|
|
JGT jgt = (JGT) obj;
|
|
return this.b == jgt.b && C14957gcv.b((Object) this.c, (Object) jgt.c) && C14957gcv.b((Object) this.d, (Object) jgt.d);
|
|
}
|
|
}
|