Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
package com.tapjoy.internal;
import java.math.BigInteger;
/* loaded from: classes4.dex */
public final class j1 extends Number {
public final String a;
public j1(String str) {
this.a = str;
}
@Override // java.lang.Number
public final double doubleValue() {
return Double.parseDouble(this.a);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Number)) {
return false;
}
Number number = (Number) obj;
return number instanceof Integer ? intValue() == number.intValue() : number instanceof Long ? longValue() == number.longValue() : number instanceof Float ? Float.parseFloat(this.a) == number.floatValue() : number instanceof Double ? Double.parseDouble(this.a) == number.doubleValue() : this.a.equals(number.toString());
}
@Override // java.lang.Number
public final float floatValue() {
return Float.parseFloat(this.a);
}
@Override // java.lang.Number
public final int intValue() {
try {
try {
return Integer.parseInt(this.a);
} catch (NumberFormatException unused) {
return (int) Long.parseLong(this.a);
}
} catch (NumberFormatException unused2) {
return new BigInteger(this.a).intValue();
}
}
@Override // java.lang.Number
public final long longValue() {
try {
return Long.parseLong(this.a);
} catch (NumberFormatException unused) {
return new BigInteger(this.a).longValue();
}
}
public final String toString() {
return this.a;
}
}