Skip to content

Commit

Permalink
Improve message
Browse files Browse the repository at this point in the history
  • Loading branch information
jevanlingen committed Jan 7, 2025
1 parent 12986eb commit e284bf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ LinkedHashMap<Input, JCTree.JCCompilationUnit> parseInputsToCompilerAst(Iterable
.map(input -> new Java8ParserInputFileObject(input, ctx))
.collect(toList());
if (!annotationProcessors.isEmpty()) {
// TODO there is no `initialFiles` argument in Java 8; first let's see if it works without it before trying to figure out if we really need a workaround.
// TODO there is neither a `initialFiles` nor `initialClassNames` argument in Java 8, so we need some workaround to make this work
compiler.initProcessAnnotations(annotationProcessors/*, inputFileObjects, emptyList()*/);
}
try {
Expand Down

0 comments on commit e284bf5

Please sign in to comment.