41 lines
1012 B
Java
41 lines
1012 B
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Hub {
|
||
|
public final String b;
|
||
|
public final String c;
|
||
|
|
||
|
public Hub(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.c = str;
|
||
|
this.b = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
String str2 = this.b;
|
||
|
StringBuilder sb = new StringBuilder("ContentEkyc(title=");
|
||
|
sb.append(str);
|
||
|
sb.append(", body=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.c.hashCode() * 31) + this.b.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Hub)) {
|
||
|
return false;
|
||
|
}
|
||
|
Hub hub = (Hub) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) hub.c) && C14957gcv.b((Object) this.b, (Object) hub.b);
|
||
|
}
|
||
|
}
|