Merge pull request #1272 from JoePfeiffer/allow-java-17

Allow execution with Java 17
This commit is contained in:
SiboVG 2022-03-30 23:19:51 +02:00 committed by GitHub
commit 9efe1a9569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ public final class Application {
private static Injector injector;
// Supported Java Runtime Environment versions in which OR is allowed to run (e.g. '11' for Java 11)
public static int[] SUPPORTED_JRE_VERSIONS = {11};
public static int[] SUPPORTED_JRE_VERSIONS = {11, 17};
/**
* Return whether to use additional safety code checks.