42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class WL {
|
|
public String a;
|
|
private boolean c = false;
|
|
public WP d;
|
|
public List<WP> e;
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
WL wl = (WL) obj;
|
|
String str = this.a;
|
|
if (str == null ? wl.a != null : !str.equals(wl.a)) {
|
|
return false;
|
|
}
|
|
List<WP> list = this.e;
|
|
if (list == null ? wl.e != null : !list.equals(wl.e)) {
|
|
return false;
|
|
}
|
|
WP wp = this.d;
|
|
WP wp2 = wl.d;
|
|
return wp != null ? wp.equals(wp2) : wp2 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
List<WP> list = this.e;
|
|
int hashCode2 = list != null ? list.hashCode() : 0;
|
|
WP wp = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (wp != null ? wp.hashCode() : 0);
|
|
}
|
|
}
|