mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-01 04:10:51 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
17 lines
463 B
Java
17 lines
463 B
Java
import lombok.extern.log4j.Log4j;
|
|
@lombok.extern.log4j.Log4j class LoggerLog4j {
|
|
private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(LoggerLog4j.class);
|
|
<clinit>() {
|
|
}
|
|
LoggerLog4j() {
|
|
super();
|
|
}
|
|
}
|
|
@Log4j class LoggerLog4jWithImport {
|
|
private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(LoggerLog4jWithImport.class);
|
|
<clinit>() {
|
|
}
|
|
LoggerLog4jWithImport() {
|
|
super();
|
|
}
|
|
} |