Files
lombok/test/transform/resource/after-ecj/LoggerFlogger.java
T

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();
}
}