Skip to content

Commit

Permalink
ASTParser doesn't parse task tags
Browse files Browse the repository at this point in the history
Signed-off-by: Snjezana Peco <[email protected]>
  • Loading branch information
snjeza authored and akurtakov committed Apr 2, 2024
1 parent 2e89a1d commit e53e413
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ public void setCompilerOptions(Map<String, String> options) {
// copy client's options so as to not do any side effect on them
options = new HashMap<>(options);
}
options.remove(JavaCore.COMPILER_TASK_TAGS); // no need to parse task tags
// https://github.com/eclipse-jdt/eclipse.jdt.core/issues/2179
// options.remove(JavaCore.COMPILER_TASK_TAGS); // no need to parse task tags
this.compilerOptions = options;
}

Expand Down

0 comments on commit e53e413

Please sign in to comment.