103 lines
2.8 KiB
Java
103 lines
2.8 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class QW implements Parcelable {
|
|
public static final RVV CREATOR = new RVV(0);
|
|
public final String c;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public QW(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
this.c = str;
|
|
this.e = str2;
|
|
}
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public QW(android.os.Parcel r3) {
|
|
/*
|
|
r2 = this;
|
|
java.lang.String r0 = ""
|
|
o.C14957gcv.e(r3, r0)
|
|
o.C14957gcv.e(r3, r0)
|
|
java.lang.String r1 = r3.readString()
|
|
if (r1 != 0) goto Lf
|
|
goto L10
|
|
Lf:
|
|
r0 = r1
|
|
L10:
|
|
java.lang.String r3 = r3.readString()
|
|
r2.<init>(r0, r3)
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: o.QW.<init>(android.os.Parcel):void");
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.e);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<QW> {
|
|
private RVV() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ QW createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new QW(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ QW[] newArray(int i) {
|
|
return new QW[i];
|
|
}
|
|
|
|
public /* synthetic */ RVV(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
StringBuilder sb = new StringBuilder("JuristicRequestFormResponseDisplay(email=");
|
|
sb.append(str);
|
|
sb.append(", transactionDateTime=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
String str = this.e;
|
|
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof QW)) {
|
|
return false;
|
|
}
|
|
QW qw = (QW) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) qw.c) && C14957gcv.b((Object) this.e, (Object) qw.e);
|
|
}
|
|
}
|