aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/LoggerJul.java
blob: b020c540f7c35798ba938ef67a5f9f3955d2f9ed (plain)
1
2
3
4
5
6
class LoggerJul {
	private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJul.class.getName());
}
class LoggerJulWithImport {
	private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LoggerJulWithImport.class.getName());
}