35 lines
705 B
Java
35 lines
705 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class UVT {
|
|
|
|
@SerializedName("types")
|
|
public List<dEF> c;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof UVT)) {
|
|
return false;
|
|
}
|
|
UVT uvt = (UVT) obj;
|
|
List<dEF> list = this.c;
|
|
if (list != null) {
|
|
return list.equals(uvt.c);
|
|
}
|
|
return uvt.c == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
List<dEF> list = this.c;
|
|
if (list != null) {
|
|
return list.hashCode();
|
|
}
|
|
return 0;
|
|
}
|
|
}
|