Remove dead code (#8547)

This commit is contained in:
Trask Stalnaker 2023-05-22 22:46:39 -07:00 committed by GitHub
parent 58cc55dba4
commit e83d9be327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 11 deletions

View File

@ -41,17 +41,6 @@ abstract class WildflySmokeTest extends AppServerTest {
}
}
abstract class WildflyJdk8SmokeTest extends WildflySmokeTest {
@Override
protected Map<String, String> getExtraEnv() {
// https://github.com/openjdk/jdk8u/commit/d72d28967d732ba32e02178b828255378c5a8938
// introduces a changes that causes wildfly to throw java.io.FileNotFoundException: Invalid file
// path on windows
return Collections.singletonMap("JAVA_OPTS", "-Djdk.io.File.enableADS=true " +
"-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true")
}
}
@AppServer(version = "13.0.0.Final", jdk = "8")
class Wildfly13Jdk8 extends WildflySmokeTest {
}