diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-03-11 22:04:27 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-03-11 22:06:25 +0100 |
commit | 56150952c451f0d8c2018424191d4480ac5e8460 (patch) | |
tree | 4a91525c6d59709c5bb7894d1289721f07d104cf /test/transform/resource/after-ecj | |
parent | 653eb56883a6be109ee7e767fae920cae70f569d (diff) | |
download | lombok-56150952c451f0d8c2018424191d4480ac5e8460.tar.gz lombok-56150952c451f0d8c2018424191d4480ac5e8460.tar.bz2 lombok-56150952c451f0d8c2018424191d4480ac5e8460.zip |
Added @Log4j2 support.
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/LoggerLog4j2.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/LoggerLog4j2.java b/test/transform/resource/after-ecj/LoggerLog4j2.java new file mode 100644 index 00000000..c1368e5d --- /dev/null +++ b/test/transform/resource/after-ecj/LoggerLog4j2.java @@ -0,0 +1,17 @@ +import lombok.extern.log4j.Log4j2; +@lombok.extern.log4j.Log4j2 class LoggerLog4j2 { + private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(LoggerLog4j2.class); + <clinit>() { + } + LoggerLog4j2() { + super(); + } +} +@Log4j2 class LoggerLog4j2WithImport { + private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(LoggerLog4j2WithImport.class); + <clinit>() { + } + LoggerLog4j2WithImport() { + super(); + } +}
\ No newline at end of file |