Files
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

5 lines
98 B
Java

class ConstructorInner {
@lombok.AllArgsConstructor(staticName = "of")
static class Inner {
}
}