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

40 lines
991 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* renamed from: o.Nu, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0752Nu {
public final int c;
public final int e;
public C0752Nu(int i, int i2) {
this.c = i;
this.e = i2;
}
public final String toString() {
int i = this.c;
int i2 = this.e;
StringBuilder sb = new StringBuilder("HmlOperatingAccountDisplay(minAmount=");
sb.append(i);
sb.append(", maxAmount=");
sb.append(i2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (Integer.hashCode(this.c) * 31) + Integer.hashCode(this.e);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0752Nu)) {
return false;
}
C0752Nu c0752Nu = (C0752Nu) obj;
return this.c == c0752Nu.c && this.e == c0752Nu.e;
}
}