diff options
Diffstat (limited to 'src/lombok/javac')
-rw-r--r-- | src/lombok/javac/HandlerLibrary.java | 6 | ||||
-rw-r--r-- | src/lombok/javac/JavacASTVisitor.java | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/javac/HandlerLibrary.java b/src/lombok/javac/HandlerLibrary.java index f73b9930..7253cbaa 100644 --- a/src/lombok/javac/HandlerLibrary.java +++ b/src/lombok/javac/HandlerLibrary.java @@ -151,7 +151,7 @@ public class HandlerLibrary { /** * Handles the provided annotation node by first finding a qualifying instance of * {@link JavacAnnotationHandler} and if one exists, calling it with a freshly cooked up - * instance of {@link AnnotationValues}. + * instance of {@link lombok.core.AnnotationValues}. * * Note that depending on the printASTOnly flag, the {@link lombok.core.PrintAST} annotation * will either be silently skipped, or everything that isn't <code>PrintAST</code> will be skipped. @@ -203,13 +203,13 @@ public class HandlerLibrary { * random right now. This lack of order is particularly annoying for the <code>PrintAST</code> annotation, * which is almost always intended to run last. Hence, this hack, which lets it in fact run last. * - * {@see #skipAllButPrintAST} + * @see #skipAllButPrintAST() */ public void skipPrintAST() { skipPrintAST = true; } - /** {@see #skipPrintAST} */ + /** @see #skipPrintAST() */ public void skipAllButPrintAST() { skipPrintAST = false; } diff --git a/src/lombok/javac/JavacASTVisitor.java b/src/lombok/javac/JavacASTVisitor.java index ac953974..0d751c52 100644 --- a/src/lombok/javac/JavacASTVisitor.java +++ b/src/lombok/javac/JavacASTVisitor.java @@ -114,7 +114,7 @@ public interface JavacASTVisitor { /** * @param printContent if true, method and initializer bodies are printed directly, as java code, * instead of a tree listing of every AST node inside it. - * @param PrintStream write output to this stream. You must close it yourself. flush() is called after every line. + * @param out write output to this stream. You must close it yourself. flush() is called after every line. * * @see java.io.PrintStream#flush() */ |