From 3798d9426365826598b42e00969314a3ae1f8c78 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 20 Jun 2011 21:36:40 +0200 Subject: Minor tweaks to documentation updates (javadocs, website). --- src/core/lombok/eclipse/Eclipse.java | 4 +--- src/core/lombok/javac/handlers/JavacHandlerUtil.java | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/core/lombok/eclipse/Eclipse.java b/src/core/lombok/eclipse/Eclipse.java index 8910bb3e..2cb2fe33 100644 --- a/src/core/lombok/eclipse/Eclipse.java +++ b/src/core/lombok/eclipse/Eclipse.java @@ -121,8 +121,6 @@ public class Eclipse { /** * Generates a warning in the Eclipse error log. Note that most people never look at it! * - * @param cud The {@code CompilationUnitDeclaration} where the error occurred. - * An error will be generated on line 0 linking to the error log entry. Can be {@code null}. * @param message Human readable description of the problem. * @param error The associated exception. Can be {@code null}. */ @@ -580,7 +578,7 @@ public class Eclipse { * * @param type An actual type. This method checks if {@code typeNode} is likely to be a reference to this type. * @param node A Lombok AST node. Any node in the appropriate compilation unit will do (used to get access to import statements). - * @param typeNode A type reference to check. + * @param typeRef A type reference to check. */ public static boolean typeMatches(Class type, EclipseNode node, TypeReference typeRef) { if (typeRef == null || typeRef.getTypeName() == null) return false; diff --git a/src/core/lombok/javac/handlers/JavacHandlerUtil.java b/src/core/lombok/javac/handlers/JavacHandlerUtil.java index 1f0da79a..0cbe2c83 100644 --- a/src/core/lombok/javac/handlers/JavacHandlerUtil.java +++ b/src/core/lombok/javac/handlers/JavacHandlerUtil.java @@ -173,7 +173,7 @@ public class JavacHandlerUtil { /** * @return the likely setter name for the stated field. (e.g. private boolean foo; to setFoo). * - * Convenient wrapper around {@link TransformationsUtil#toSetterName(CharSequence)}. + * Convenient wrapper around {@link TransformationsUtil#toSetterName(CharSequence, boolean)}. */ public static String toSetterName(JCVariableDecl field) { CharSequence fieldName = field.name; -- cgit