54 lines
1.2 KiB
Java
54 lines
1.2 KiB
Java
package o;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class sqa implements Serializable {
|
|
private static sqa a = new sqa("", (byte) 0);
|
|
private static sqa d = new sqa(new String(""), (byte) 0);
|
|
private String b;
|
|
private String e;
|
|
|
|
public final String toString() {
|
|
return this.e;
|
|
}
|
|
|
|
public sqa(String str) {
|
|
this(str, (byte) 0);
|
|
}
|
|
|
|
private sqa(String str, byte b) {
|
|
this.e = str == null ? "" : str;
|
|
this.b = null;
|
|
}
|
|
|
|
protected final Object readResolve() {
|
|
String str = this.e;
|
|
return (str == null || "".equals(str)) ? a : this.e.equals("") ? d : this;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (obj == null || obj.getClass() != getClass()) {
|
|
return false;
|
|
}
|
|
sqa sqaVar = (sqa) obj;
|
|
String str = this.e;
|
|
if (str == null) {
|
|
if (sqaVar.e != null) {
|
|
return false;
|
|
}
|
|
} else if (!str.equals(sqaVar.e)) {
|
|
return false;
|
|
}
|
|
String str2 = sqaVar.b;
|
|
return true;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.e.hashCode();
|
|
}
|
|
}
|