diff options
author | Roel Spilker <r.spilker@gmail.com> | 2010-11-07 02:49:01 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2010-11-07 02:49:01 +0100 |
commit | 1f0db1191a7fcc35aaeab1481a806201a450d797 (patch) | |
tree | ddd7bb2a77a016892cada99f4a53c1abfc1f607a /test/transform/resource/after-ecj/LoggerSlf4j.java | |
parent | 50524f338ef1f29a1848a2f2d542d6b7317c5eff (diff) | |
download | lombok-1f0db1191a7fcc35aaeab1481a806201a450d797.tar.gz lombok-1f0db1191a7fcc35aaeab1481a806201a450d797.tar.bz2 lombok-1f0db1191a7fcc35aaeab1481a806201a450d797.zip |
Use the actual annotation value to process the @Log annotations instead of their String representations.
Diffstat (limited to 'test/transform/resource/after-ecj/LoggerSlf4j.java')
-rw-r--r-- | test/transform/resource/after-ecj/LoggerSlf4j.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-ecj/LoggerSlf4j.java b/test/transform/resource/after-ecj/LoggerSlf4j.java index 24682e97..e635ece8 100644 --- a/test/transform/resource/after-ecj/LoggerSlf4j.java +++ b/test/transform/resource/after-ecj/LoggerSlf4j.java @@ -8,7 +8,7 @@ } class LoggerSlf4jOuter { static @lombok.extern.slf4j.Log class Inner { - private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4jOuter.Inner.class); + private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(Inner.class); <clinit>() { } Inner() { |