Files

42 lines
1.2 KiB
Java

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