Prepare for Java 14

This commit is contained in:
md_5 2020-03-02 13:30:33 +11:00
parent 6b00b14539
commit 13ed05decd

View File

@ -149,8 +149,8 @@ public class Main {
} }
float javaVersion = Float.parseFloat(System.getProperty("java.class.version")); float javaVersion = Float.parseFloat(System.getProperty("java.class.version"));
if (javaVersion > 57.0) { if (javaVersion > 58.0) {
System.err.println("Unsupported Java detected (" + javaVersion + "). Only up to Java 13 is supported."); System.err.println("Unsupported Java detected (" + javaVersion + "). Only up to Java 14 is supported.");
return; return;
} }