I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit d42d41ce authored by zzz's avatar zzz
Browse files

Util: Check java versions up to 17

parent 7ff6373d
No related branches found
No related tags found
No related merge requests found
......@@ -395,7 +395,7 @@ public abstract class SystemVersion {
System.out.println("Java 9 : " + isJava9());
System.out.println("Java 10 : " + isJava10());
System.out.println("Java 11 : " + isJava11());
for (int i = 12; i <= 15; i++) {
for (int i = 12; i <= 17; i++) {
System.out.println("Java " + i + " : " + isJava(i));
}
System.out.println("Android : " + isAndroid());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment