aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/LoggerSlf4j.java
blob: cb1486bacc3302baf0e15cb652b79c9c82c80e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class LoggerSlf4j {
	private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4j.class);
}

class LoggerSlf4jWithImport {
	private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerSlf4jWithImport.class);
}

class LoggerSlf4jOuter {
	static class Inner {
		private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(Inner.class);
	}
}