40 lines
942 B
Java
40 lines
942 B
Java
package o;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class CgF {
|
|
String b;
|
|
public String e;
|
|
|
|
public CgF(String str, String str2) {
|
|
this.b = str;
|
|
this.e = str2;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
CgF cgF = (CgF) obj;
|
|
String str = this.b;
|
|
if (str == null ? cgF.b != null : !str.equals(cgF.b)) {
|
|
return false;
|
|
}
|
|
String str2 = this.e;
|
|
String str3 = cgF.e;
|
|
return str2 != null ? str2.equals(str3) : str3 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.b;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.e;
|
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public /* synthetic */ CgF() {
|
|
}
|
|
}
|