aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse/handlers
diff options
context:
space:
mode:
authorMaarten Mulders <m.th.mulders@xs4all.nl>2014-02-08 15:38:54 +0100
committerMaarten Mulders <m.th.mulders@xs4all.nl>2014-02-08 15:38:54 +0100
commitebc9ee5f6d6bc89af65d27f472d13f18b34bef18 (patch)
tree9be2954d407f02768a65e2eda6a3e11616aeb509 /src/core/lombok/eclipse/handlers
parente1153c16562dba545f4cc2ecbc26befde6c1a781 (diff)
downloadlombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.gz
lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.bz2
lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.zip
Handler and testcases for @Log4j
Diffstat (limited to 'src/core/lombok/eclipse/handlers')
-rw-r--r--src/core/lombok/eclipse/handlers/HandleLog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleLog.java b/src/core/lombok/eclipse/handlers/HandleLog.java
index 891d4df2..1cd933e3 100644
--- a/src/core/lombok/eclipse/handlers/HandleLog.java
+++ b/src/core/lombok/eclipse/handlers/HandleLog.java
@@ -181,7 +181,7 @@ public class HandleLog {
@ProviderFor(EclipseAnnotationHandler.class)
public static class HandleLog4jLog extends EclipseAnnotationHandler<lombok.extern.log4j.Log4j> {
@Override public void handle(AnnotationValues<lombok.extern.log4j.Log4j> annotation, Annotation source, EclipseNode annotationNode) {
- processAnnotation(LoggingFramework.LOG4J, annotation, source, annotationNode, "");
+ processAnnotation(LoggingFramework.LOG4J, annotation, source, annotationNode, annotation.getInstance().value());
}
}