Skip to content

Commit

Permalink
Remove unnecessary noise printed during a normal build.
Browse files Browse the repository at this point in the history
This change prevents IntelliJ opening the log window when using the "Show log on stderr" option just due to a non-actionable diagnostic being printed. Users don't need to see this and the convention in Java builds is to not print anything unless there's a problem.
  • Loading branch information
mikehearn committed Apr 26, 2024
1 parent 336907a commit 384f52b
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -170,7 +170,6 @@ public final boolean process(Set<? extends TypeElement> annotations, RoundEnviro
// process remaining
int count = beanDefinitions.size();
if (count > 0) {
note("Creating bean classes for %s type elements", count);
ElementAnnotationMetadataFactory annotationMetadataFactory = javaVisitorContext.getElementAnnotationMetadataFactory().readOnly();
for (String className : beanDefinitions) {
if (processed.add(className)) {
Expand Down

0 comments on commit 384f52b

Please sign in to comment.