The following references in JavaCompiler to foundTypeProcessors should be removed.
if (procOnly && !foundTypeProcessors) {
compiler.todo.clear();
} else {
if (procOnly && foundTypeProcessors)
compiler.shouldStopPolicy = CompileState.FLOW;
They are obsolete from the 308 prototype in JDK 7.
if (procOnly && !foundTypeProcessors) {
compiler.todo.clear();
} else {
if (procOnly && foundTypeProcessors)
compiler.shouldStopPolicy = CompileState.FLOW;
They are obsolete from the 308 prototype in JDK 7.
- relates to
-
JDK-6975005 improve JavacProcessingEnvironment.Round abstraction
-
- Closed
-