Skip to content

Commit

Permalink
[1.2.0-SNAPSHOT]
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
GoodforGod committed Feb 25, 2024
1 parent 6f350f8 commit e310a5b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public List<Option> getOptions(RoundEnvironment roundEnv, ProcessingEnvironment

if (!hintOptions.isEmpty()) {
final HintOrigin origin = HintUtils.getHintOrigin(element, processingEnv);
final List<String> resultOptions = options.computeIfAbsent(origin, (k) -> new ArrayList<>());
final List<String> resultOptions = options.computeIfAbsent(origin, k -> new ArrayList<>());
resultOptions.addAll(hintOptions);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public boolean process(Set<? extends TypeElement> annotatedElements, RoundEnviro
})
.collect(Collectors.toList());

System.out.println("Options - " + options);

if (options.isEmpty()) {
final String annotations = OPTION_PARSERS.stream()
.flatMap(parser -> parser.getSupportedAnnotations().stream()
Expand Down

0 comments on commit e310a5b

Please sign in to comment.