diff options
author | Maarten Mulders <m.th.mulders@xs4all.nl> | 2014-02-08 15:38:54 +0100 |
---|---|---|
committer | Maarten Mulders <m.th.mulders@xs4all.nl> | 2014-02-08 15:38:54 +0100 |
commit | ebc9ee5f6d6bc89af65d27f472d13f18b34bef18 (patch) | |
tree | 9be2954d407f02768a65e2eda6a3e11616aeb509 /src/core/lombok/eclipse/handlers/HandleLog.java | |
parent | e1153c16562dba545f4cc2ecbc26befde6c1a781 (diff) | |
download | lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.gz lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.bz2 lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.zip |
Handler and testcases for @Log4j
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleLog.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleLog.java | 2 |
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()); } } |