Skip to content

Commit

Permalink
Ignore annotation process warning when restarting dev mode
Browse files Browse the repository at this point in the history
It already appeared twice during the Maven build so we really don't need
it to appear every time we restart dev mode.

Fixes #37532

(cherry picked from commit 00fc046)
  • Loading branch information
gsmet committed Jan 30, 2024
1 parent b4be787 commit 9638a15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class JavaCompilationProvider implements CompilationProvider {
// -parameters is used to generate metadata for reflection on method parameters
// this is useful when people using debuggers against their hot-reloaded app
private static final Set<String> COMPILER_OPTIONS = Set.of("-g", "-parameters");
private static final Set<String> IGNORE_NAMESPACES = Set.of("org.osgi");
private static final Set<String> IGNORE_NAMESPACES = Set.of("org.osgi", "Annotation processing is enabled because");

private static final String PROVIDER_KEY = "java";

Expand Down

0 comments on commit 9638a15

Please sign in to comment.