what-the-bank/sources/o/QA.java

43 lines
1.1 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class QA extends QB {
public final String c;
public final String e;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public QA(String str, String str2) {
super((byte) 0);
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.e = str;
this.c = str2;
}
public final String toString() {
String str = this.e;
String str2 = this.c;
StringBuilder sb = new StringBuilder("SuitabilitySummaryAnswerDisplay(title=");
sb.append(str);
sb.append(", answer=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.e.hashCode() * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof QA)) {
return false;
}
QA qa = (QA) obj;
return C14957gcv.b((Object) this.e, (Object) qa.e) && C14957gcv.b((Object) this.c, (Object) qa.c);
}
}