39 lines
860 B
Java
39 lines
860 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.gpJ, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public class C15393gpJ {
|
|
|
|
@SerializedName("tilesVersion")
|
|
private String b;
|
|
|
|
public C15393gpJ(String str) {
|
|
this.b = str;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
C15393gpJ c15393gpJ = (C15393gpJ) obj;
|
|
String str = this.b;
|
|
if (str != null) {
|
|
return str.equals(c15393gpJ.b);
|
|
}
|
|
return c15393gpJ.b == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.b;
|
|
if (str != null) {
|
|
return str.hashCode();
|
|
}
|
|
return 0;
|
|
}
|
|
}
|