blob: 3cb267943e0850155cd3f5b55922e9011202dc92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class LoggerCommons {
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LoggerCommons.class);
}
class LoggerCommonsWithImport {
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LoggerCommonsWithImport.class);
}
class LoggerCommonsWithDifferentName {
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog("DifferentName");
}
|