what-the-bank/sources/o/F.java

40 lines
887 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class F {
@SerializedName("answers")
public List<String> e;
public F(List<String> list) {
this.e = list;
}
public boolean equals(Object obj) {
if (obj instanceof F) {
List<String> list = ((F) obj).e;
if (this.e.size() != list.size()) {
return false;
}
for (int i = 0; i < this.e.size(); i++) {
if (!this.e.get(i).equals(list.get(i))) {
return false;
}
}
return true;
}
return super.equals(obj);
}
public int hashCode() {
List<String> list = this.e;
if (list != null) {
return list.hashCode();
}
return 0;
}
}