Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View 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;
}
}