blob: 86004b670dfd15a9742173a23f357226520fb1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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();
}
}
|