aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse
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/lombok/eclipse
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/lombok/eclipse')
-rw-r--r--src/core/lombok/eclipse/Eclipse.java4
1 files changed, 1 insertions, 3 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;