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
467 B
Java
17 lines
467 B
Java
import lombok.extern.java.Log;
|
|
@lombok.extern.java.Log class LoggerJul {
|
|
private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJul.class.getName());
|
|
<clinit>() {
|
|
}
|
|
LoggerJul() {
|
|
super();
|
|
}
|
|
}
|
|
@Log class LoggerJulWithImport {
|
|
private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJulWithImport.class.getName());
|
|
<clinit>() {
|
|
}
|
|
LoggerJulWithImport() {
|
|
super();
|
|
}
|
|
} |