aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/LoggerJul.java
blob: 20f0d24d2e51d943a8dcbdda07bf6f1e8268221e (plain)
1
2
3
4
5
6
7
8
class LoggerJul {
	@java.lang.SuppressWarnings("all")
	private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJul.class.getName());
}
class LoggerJulWithImport {
	@java.lang.SuppressWarnings("all")
	private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJulWithImport.class.getName());
}