aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/eclipse/HandlerLibrary.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-07-08 23:44:43 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-07-08 23:44:43 +0200
commitf6778b0426d86c8f6bc23b0e3bb7617eb7a08709 (patch)
tree8e5647eba4ef23350fdd7d2e6079a8711ae5e4e6 /src/lombok/eclipse/HandlerLibrary.java
parent8534a8e0a552f21ad6479e94fad8db36e67d44d5 (diff)
downloadlombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.tar.gz
lombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.tar.bz2
lombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.zip
Renamed all true names of 'eclipse' to 'Eclipse' (but not the eclipse package, of course),
and fixed a showstopper bug in the installer that would add -javaagent:lombok.jar to eclipse.ini, which is wrong of course; it needs to be lombok.eclipse.agent.jar.
Diffstat (limited to 'src/lombok/eclipse/HandlerLibrary.java')
-rw-r--r--src/lombok/eclipse/HandlerLibrary.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/eclipse/HandlerLibrary.java b/src/lombok/eclipse/HandlerLibrary.java
index 8ee7d032..1b9ed545 100644
--- a/src/lombok/eclipse/HandlerLibrary.java
+++ b/src/lombok/eclipse/HandlerLibrary.java
@@ -50,7 +50,7 @@ import org.eclipse.jdt.internal.compiler.ast.TypeReference;
*/
public class HandlerLibrary {
/**
- * Creates a new HandlerLibrary. Errors will be reported to the eclipse Error log.
+ * Creates a new HandlerLibrary. Errors will be reported to the Eclipse Error log.
* You probably want to use {@link #load()} instead.
*/
public HandlerLibrary() {}
@@ -81,7 +81,7 @@ public class HandlerLibrary {
private boolean skipPrintAST;
/**
- * Creates a new HandlerLibrary. Errors will be reported to the eclipse Error log.
+ * Creates a new HandlerLibrary. Errors will be reported to the Eclipse Error log.
* then uses SPI discovery to load all annotation and visitor based handlers so that future calls
* to the handle methods will defer to these handlers.
*/
@@ -114,7 +114,7 @@ public class HandlerLibrary {
}
lib.typeLibrary.addType(container.annotationClass.getName());
} catch ( Throwable t ) {
- Eclipse.error(null, "Can't load Lombok annotation handler for eclipse: ", t);
+ Eclipse.error(null, "Can't load Lombok annotation handler for Eclipse: ", t);
}
}
}
@@ -131,7 +131,7 @@ public class HandlerLibrary {
try {
lib.visitorHandlers.add(it.next());
} catch ( Throwable t ) {
- Eclipse.error(null, "Can't load Lombok visitor handler for eclipse: ", t);
+ Eclipse.error(null, "Can't load Lombok visitor handler for Eclipse: ", t);
}
}
}