aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/LoggerCustomWithTopicAndName.java
blob: 4db02cc1d9318a5e64df2dd0a59736b3e9d09c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class LoggerCustomLog {
	@java.lang.SuppressWarnings("all")
	private static final MyLoggerFactory log = MyLoggerFactory.create(LoggerCustomLog.class.getName(), "t", null, LoggerCustomLog.class, "t");
}

class LoggerCustomLogWithStaticField {
	@java.lang.SuppressWarnings("all")
	private static final MyLoggerFactory log = MyLoggerFactory.create(LoggerCustomLogWithStaticField.class.getName(), LoggerCustomLogWithStaticField.TOPIC, null, LoggerCustomLogWithStaticField.class, LoggerCustomLogWithStaticField.TOPIC);
	static final String TOPIC = "StaticField";
}

class MyLoggerFactory {
	static MyLoggerFactory create(String name, String t1, Object o, Class<?> clazz, String t2) {
		return null;
	}
}