mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-02 16:49:10 +00:00
15 lines
387 B
Java
15 lines
387 B
Java
package org.parabot.api.misc;
|
|
|
|
/**
|
|
* @author JKetelaar
|
|
*/
|
|
public class JavaUtil {
|
|
public static double JAVA_VERSION = getVersion();
|
|
|
|
static double getVersion() {
|
|
String version = System.getProperty("java.version");
|
|
int pos = version.indexOf('.');
|
|
pos = version.indexOf('.', pos + 1);
|
|
return Double.parseDouble(version.substring(0, pos));
|
|
}
|
|
} |