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

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