mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 16:19:24 +00:00
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.
5 lines
98 B
Java
5 lines
98 B
Java
class ConstructorInner {
|
|
@lombok.AllArgsConstructor(staticName = "of")
|
|
static class Inner {
|
|
}
|
|
} |