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

41 lines
1015 B
Java

package o;
/* loaded from: classes3.dex */
public final class gPE {
public final String a;
public final String c;
public gPE(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.c = str;
this.a = str2;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
StringBuilder sb = new StringBuilder("Remark(header=");
sb.append(str);
sb.append(", description=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.c.hashCode() * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof gPE)) {
return false;
}
gPE gpe = (gPE) obj;
return C14957gcv.b((Object) this.c, (Object) gpe.c) && C14957gcv.b((Object) this.a, (Object) gpe.a);
}
}