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

40 lines
966 B
Java

package o;
/* renamed from: o.fMe, reason: case insensitive filesystem */
/* loaded from: classes5.dex */
public final class C12957fMe {
public final float a;
public final float b;
public C12957fMe(float f, float f2) {
this.a = f;
this.b = f2;
}
public final boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (this == obj) {
return true;
}
if (!(obj instanceof C12957fMe)) {
return false;
}
C12957fMe c12957fMe = (C12957fMe) obj;
return this.a == c12957fMe.a && this.b == c12957fMe.b;
}
public final String toString() {
StringBuilder sb = new StringBuilder();
sb.append(this.a);
sb.append("x");
sb.append(this.b);
return sb.toString();
}
public final int hashCode() {
return Float.floatToIntBits(this.a) ^ Float.floatToIntBits(this.b);
}
}