mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 14:19:47 +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.
13 lines
349 B
Java
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();
|
|
}
|
|
} |