37 lines
930 B
Java
37 lines
930 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SF {
|
|
public final String c;
|
|
public final String d;
|
|
|
|
public SF(String str, String str2) {
|
|
this.d = str;
|
|
this.c = str2;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
SF sf = (SF) obj;
|
|
String str = this.d;
|
|
if (str == null ? sf.d != null : !str.equals(sf.d)) {
|
|
return false;
|
|
}
|
|
String str2 = this.c;
|
|
String str3 = sf.c;
|
|
return str2 != null ? str2.equals(str3) : str3 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.c;
|
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
}
|