diff --git a/core/deployment/src/main/java/io/quarkus/deployment/ide/IdeProcessor.java b/core/deployment/src/main/java/io/quarkus/deployment/ide/IdeProcessor.java index a4810d83f35c2..b4e36a6950eba 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/ide/IdeProcessor.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/ide/IdeProcessor.java @@ -189,7 +189,6 @@ public IdeRunningProcessBuildItem detectRunningIdeProcesses(LaunchModeBuildItem return new IdeRunningProcessBuildItem(result); } - // TODO: remove when we move to Java 11 and just call the methods of 'java.lang.ProcessHandle' private static class ProcessUtil { /** diff --git a/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java b/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java index 0e7594bf521a5..5b881454d89aa 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java @@ -165,8 +165,7 @@ interface JarConfig { interface AppcdsConfig { /** * Whether to automate the creation of AppCDS. - * Furthermore, this option only works for Java 11+ and is considered experimental for the time being. - * Finally, care must be taken to use the same exact JVM version when building and running the application. + * Care must be taken to use the same exact JVM version when building and running the application. */ @WithDefault("false") boolean enabled();