Skip to content

Commit

Permalink
Remove unnecessary noise printed during a normal build. (#10769)
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 May 10, 2024
1 parent de4028e commit 767c0f9
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 767c0f9

Please sign in to comment.