discord-jadx/app/src/main/java/b/f/j/d/a.java

45 lines
1.0 KiB
Java
Raw Normal View History

2021-12-21 23:37:30 +00:00
package b.f.j.d;
2021-06-27 20:44:35 +00:00
2021-12-21 23:37:30 +00:00
import b.c.a.a0.d;
2022-03-02 20:59:20 +00:00
/* compiled from: BytesRange.java */
2022-04-12 20:58:48 +00:00
/* loaded from: classes2.dex */
2021-06-27 20:44:35 +00:00
public class a {
public final int a;
2021-12-21 23:37:30 +00:00
/* renamed from: b reason: collision with root package name */
2022-04-04 20:51:55 +00:00
public final int f562b;
2021-06-27 20:44:35 +00:00
public a(int i, int i2) {
this.a = i;
2022-04-04 20:51:55 +00:00
this.f562b = i2;
2021-06-27 20:44:35 +00:00
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof a)) {
return false;
}
a aVar = (a) obj;
2022-04-04 20:51:55 +00:00
return this.a == aVar.a && this.f562b == aVar.f562b;
2021-06-27 20:44:35 +00:00
}
public int hashCode() {
2022-04-04 20:51:55 +00:00
return d.J0(this.a, this.f562b);
2021-06-27 20:44:35 +00:00
}
public String toString() {
Object[] objArr = new Object[2];
int i = this.a;
String str = "";
objArr[0] = i == Integer.MAX_VALUE ? str : Integer.toString(i);
2022-04-04 20:51:55 +00:00
int i2 = this.f562b;
2021-06-27 20:44:35 +00:00
if (i2 != Integer.MAX_VALUE) {
str = Integer.toString(i2);
}
objArr[1] = str;
return String.format(null, "%s-%s", objArr);
}
}