diff options
-rw-r--r-- | src/core/lombok/javac/JavacAST.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lombok/javac/JavacAST.java b/src/core/lombok/javac/JavacAST.java index e49d8ac8..d565b0ef 100644 --- a/src/core/lombok/javac/JavacAST.java +++ b/src/core/lombok/javac/JavacAST.java @@ -405,6 +405,8 @@ public class JavacAST extends AST<JavacAST, JavacNode, JCTree> { ((CapturingDiagnosticListener) listener).suppress(startPos, endPos); } try { + // TODO: This changed a bit in java8; there is now also a Handler thingie; see JavacResolution for what changed. + // Possibly integrate these 2 code paths. if (JAVAC7_DEFERRED_DIAGNOSTICS != null) { ListBuffer<?> deferredDiagnostics = (ListBuffer<?>) JAVAC7_DEFERRED_DIAGNOSTICS.get(log); ListBuffer<Object> newDeferredDiagnostics = ListBuffer.lb(); |