We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15112c commit 221cd7eCopy full SHA for 221cd7e
impl/src/main/saker/java/testing/impl/test/RemoteJavaTesterCacheKey.java
@@ -96,6 +96,10 @@ public RemoteJavaRMIProcess allocate() throws Exception {
96
if (arg.startsWith("--illegal-access=")) {
97
continue;
98
}
99
+ if (arg.startsWith("-Xlog:")) {
100
+ //only supported since Java 9
101
+ continue;
102
+ }
103
if ("--add-reads".equals(arg) || "--add-exports".equals(arg) || "--add-opens".equals(arg)) {
104
//these arguments are not available on java 8 and below
105
if (!it.hasNext()) {
0 commit comments