This commit is contained in:
2026-01-11 20:30:56 +00:00
parent 5df1fb1cc3
commit 3def66da2d
3522 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package bH;
public class q {
public static boolean a() {
String str = System.getProperty("os.name", "Windows");
return str.startsWith("Win");
}
public static boolean b() {
String str = System.getProperty("os.name", "");
return str.startsWith("Android");
}
public static float c() {
String str = System.getProperty("java.specification.version");
try {
return Float.parseFloat(str);
} catch (Exception exception) {
D.a("Failed to get Java Spec from: " + str);
return Float.NaN;
}
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/bH/q.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/