Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
41
apk_decompiled/sources/S2/i.java
Normal file
41
apk_decompiled/sources/S2/i.java
Normal file
@@ -0,0 +1,41 @@
|
||||
package S2;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class i {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public static final int f1600a;
|
||||
|
||||
static {
|
||||
int i;
|
||||
String property = System.getProperty("java.version");
|
||||
try {
|
||||
String[] split = property.split("[._]");
|
||||
i = Integer.parseInt(split[0]);
|
||||
if (i == 1 && split.length > 1) {
|
||||
i = Integer.parseInt(split[1]);
|
||||
}
|
||||
} catch (NumberFormatException unused) {
|
||||
i = -1;
|
||||
}
|
||||
if (i == -1) {
|
||||
try {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i4 = 0; i4 < property.length(); i4++) {
|
||||
char charAt = property.charAt(i4);
|
||||
if (!Character.isDigit(charAt)) {
|
||||
break;
|
||||
}
|
||||
sb.append(charAt);
|
||||
}
|
||||
i = Integer.parseInt(sb.toString());
|
||||
} catch (NumberFormatException unused2) {
|
||||
i = -1;
|
||||
}
|
||||
}
|
||||
if (i == -1) {
|
||||
i = 6;
|
||||
}
|
||||
f1600a = i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user