aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/LoggerSlf4jWithClass.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2010-11-07 02:49:01 +0100
committerRoel Spilker <r.spilker@gmail.com>2010-11-07 02:49:01 +0100
commit1f0db1191a7fcc35aaeab1481a806201a450d797 (patch)
treeddd7bb2a77a016892cada99f4a53c1abfc1f607a /test/transform/resource/after-ecj/LoggerSlf4jWithClass.java
parent50524f338ef1f29a1848a2f2d542d6b7317c5eff (diff)
downloadlombok-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/LoggerSlf4jWithClass.java')
-rw-r--r--test/transform/resource/after-ecj/LoggerSlf4jWithClass.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-ecj/LoggerSlf4jWithClass.java b/test/transform/resource/after-ecj/LoggerSlf4jWithClass.java
index 920f84e4..9f4846aa 100644
--- a/test/transform/resource/after-ecj/LoggerSlf4jWithClass.java
+++ b/test/transform/resource/after-ecj/LoggerSlf4jWithClass.java
@@ -23,7 +23,7 @@
}
}
@lombok.extern.slf4j.Log(void.class) class LoggerSlf4jWithClassVoid {
- private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4jWithClassVoid.class);
+ private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(void.class);
<clinit>() {
}
LoggerSlf4jWithClassVoid() {