34 lines
748 B
Java
34 lines
748 B
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class shl {
|
||
|
public final String a;
|
||
|
|
||
|
public shl(String str) {
|
||
|
this.a = str;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
StringBuilder sb = new StringBuilder("TradeNow(applicationId=");
|
||
|
sb.append(str);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.a;
|
||
|
if (str == null) {
|
||
|
return 0;
|
||
|
}
|
||
|
return str.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
return (obj instanceof shl) && C14957gcv.b((Object) this.a, (Object) ((shl) obj).a);
|
||
|
}
|
||
|
}
|