mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 22:17:45 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
17 lines
542 B
Java
17 lines
542 B
Java
import lombok.extern.apachecommons.CommonsLog;
|
|
@lombok.extern.apachecommons.CommonsLog class LoggerCommons {
|
|
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LoggerCommons.class);
|
|
<clinit>() {
|
|
}
|
|
LoggerCommons() {
|
|
super();
|
|
}
|
|
}
|
|
@CommonsLog class LoggerCommonsWithImport {
|
|
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LoggerCommonsWithImport.class);
|
|
<clinit>() {
|
|
}
|
|
LoggerCommonsWithImport() {
|
|
super();
|
|
}
|
|
} |