46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package o;
|
|
|
|
import com.huawei.hms.framework.network.grs.GrsBaseInfo;
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class BNo implements Serializable {
|
|
public static final BNo d = new BNo();
|
|
private transient Object c = null;
|
|
private long e = -1;
|
|
private long g = -1;
|
|
private int a = -1;
|
|
private int b = -1;
|
|
|
|
private BNo() {
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.a ^ 1) + this.b) ^ ((int) this.g)) + ((int) this.e);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (obj == null || !(obj instanceof BNo)) {
|
|
return false;
|
|
}
|
|
BNo bNo = (BNo) obj;
|
|
Object obj2 = bNo.c;
|
|
return this.a == bNo.a && this.b == bNo.b && this.g == bNo.g && this.e == bNo.e;
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder(80);
|
|
sb.append("[Source: ");
|
|
sb.append(GrsBaseInfo.CountryCodeSource.UNKNOWN);
|
|
sb.append("; line: ");
|
|
sb.append(this.a);
|
|
sb.append(", column: ");
|
|
sb.append(this.b);
|
|
sb.append(']');
|
|
return sb.toString();
|
|
}
|
|
}
|