mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-25 10:26:51 +00:00
16 lines
416 B
Java
16 lines
416 B
Java
import lombok.extern.flogger.Flogger;
|
|
class LoggerFloggerRecord {
|
|
static @Flogger record Inner(String x) {
|
|
private static final com.google.common.flogger.FluentLogger log = com.google.common.flogger.FluentLogger.forEnclosingClass();
|
|
/* Implicit */ private final String x;
|
|
<clinit>() {
|
|
}
|
|
public Inner(String x) {
|
|
super();
|
|
.x = x;
|
|
}
|
|
}
|
|
LoggerFloggerRecord() {
|
|
super();
|
|
}
|
|
} |