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

31 lines
648 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class xMJ {
public String d;
public xMJ(String str) {
this.d = str;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
String str = this.d;
String str2 = ((xMJ) obj).d;
return str != null ? str.equals(str2) : str2 == null;
}
public final int hashCode() {
String str = this.d;
if (str != null) {
return str.hashCode();
}
return 0;
}
}