aboutsummaryrefslogtreecommitdiff
path: root/src_eclipseagent/lombok/eclipse
diff options
context:
space:
mode:
Diffstat (limited to 'src_eclipseagent/lombok/eclipse')
-rw-r--r--src_eclipseagent/lombok/eclipse/agent/EclipseParserPatcher.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src_eclipseagent/lombok/eclipse/agent/EclipseParserPatcher.java b/src_eclipseagent/lombok/eclipse/agent/EclipseParserPatcher.java
index 8ef90dee..1418252d 100644
--- a/src_eclipseagent/lombok/eclipse/agent/EclipseParserPatcher.java
+++ b/src_eclipseagent/lombok/eclipse/agent/EclipseParserPatcher.java
@@ -25,7 +25,7 @@ public class EclipseParserPatcher {
if ( ECLIPSE_PARSER_CLASS_NAME.equals(className) ) {
try {
- return runTransform("lombok.agent.eclipse.EclipseParserTransformer", classfileBuffer);
+ return runTransform("lombok.eclipse.agent.EclipseParserTransformer", classfileBuffer);
} catch ( Throwable t ) {
System.err.println("Wasn't able to patch eclipse's Parser class:");
t.printStackTrace();
@@ -34,7 +34,7 @@ public class EclipseParserPatcher {
if ( ECLIPSE_CUD_CLASS_NAME.equals(className) ) {
try {
- return runTransform("lombok.agent.eclipse.EclipseCUDTransformer", classfileBuffer);
+ return runTransform("lombok.eclipse.agent.EclipseCUDTransformer", classfileBuffer);
} catch ( Throwable t ) {
System.err.println("Wasn't able to patch eclipse's CompilationUnitDeclaration class:");
t.printStackTrace();