aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
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/before
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/before')
-rw-r--r--test/transform/resource/before/LoggerSlf4jClassOfArray.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/before/LoggerSlf4jClassOfArray.java b/test/transform/resource/before/LoggerSlf4jClassOfArray.java
index f18e11f0..87248538 100644
--- a/test/transform/resource/before/LoggerSlf4jClassOfArray.java
+++ b/test/transform/resource/before/LoggerSlf4jClassOfArray.java
@@ -1,3 +1,6 @@
@lombok.extern.slf4j.Log(String[].class)
class LoggerSlf4jClassOfArray {
}
+@lombok.extern.slf4j.Log(java.lang.String[].class)
+class LoggerSlf4jClassOfArrayJLS {
+}