Files
lombok/test/transform/resource/after-ecj/ConstructorInner.java
T
Reinier Zwitserloot 72f546f9cb [trivial] improving consistency between javac vs. ecj output
wasn't worth an issue on the tracker: javac and ecj handlers for static constructors would differ; ecjs would specify the return type and constructor invocation using fully qualified types, whereas the handler for javac did not.
2020-02-14 01:21:24 +01:00

13 lines
349 B
Java

class ConstructorInner {
static @lombok.AllArgsConstructor(staticName = "of") class Inner {
private @java.lang.SuppressWarnings("all") Inner() {
super();
}
public static @java.lang.SuppressWarnings("all") ConstructorInner.Inner of() {
return new ConstructorInner.Inner();
}
}
ConstructorInner() {
super();
}
}