aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-06-20 21:36:40 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-06-20 21:36:40 +0200
commit3798d9426365826598b42e00969314a3ae1f8c78 (patch)
tree0d16b2a68ececffcd9e767419f1c5b7a12e09012 /src/core
parentf5303a32dceeab72b1ded678f2b2a92a2e7e180b (diff)
downloadlombok-3798d9426365826598b42e00969314a3ae1f8c78.tar.gz
lombok-3798d9426365826598b42e00969314a3ae1f8c78.tar.bz2
lombok-3798d9426365826598b42e00969314a3ae1f8c78.zip
Minor tweaks to documentation updates (javadocs, website).
Diffstat (limited to 'src/core')
-rw-r--r--src/core/lombok/eclipse/Eclipse.java4
-rw-r--r--src/core/lombok/javac/handlers/JavacHandlerUtil.java2
2 files changed, 2 insertions, 4 deletions
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;