mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 12:22:18 +00:00
31 lines
831 B
Java
31 lines
831 B
Java
import lombok.extern.flogger.Flogger;
|
|
@lombok.extern.flogger.Flogger class LoggerFlogger {
|
|
private static final com.google.common.flogger.FluentLogger log = com.google.common.flogger.FluentLogger.forEnclosingClass();
|
|
<clinit>() {
|
|
}
|
|
LoggerFlogger() {
|
|
super();
|
|
}
|
|
}
|
|
@Flogger class LoggerFloggerWithImport {
|
|
private static final com.google.common.flogger.FluentLogger log = com.google.common.flogger.FluentLogger.forEnclosingClass();
|
|
<clinit>() {
|
|
}
|
|
LoggerFloggerWithImport() {
|
|
super();
|
|
}
|
|
}
|
|
class LoggerFloggerOuter {
|
|
static @lombok.extern.flogger.Flogger class Inner {
|
|
private static final com.google.common.flogger.FluentLogger log = com.google.common.flogger.FluentLogger.forEnclosingClass();
|
|
<clinit>() {
|
|
}
|
|
Inner() {
|
|
super();
|
|
}
|
|
}
|
|
LoggerFloggerOuter() {
|
|
super();
|
|
}
|
|
}
|