mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 08:21:35 +00:00
72f546f9cb
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 {
|
|
}
|
|
} |