mirror of
https://github.com/traccar/traccar.git
synced 2026-01-31 02:33:28 -05:00
6 lines
171 B
Java
6 lines
171 B
Java
public class Test {
|
|
public static void main(String[] a) {
|
|
System.exit(Integer.parseInt(System.getProperty("java.version").split("\\.")[1]) >= 7 ? 0 : 1);
|
|
}
|
|
}
|