31 lines
648 B
Java
31 lines
648 B
Java
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;
|
|
}
|
|
}
|