Issue Description
Since #1037, the plugin will generate classes that won't compile when setting generateNoArgsConstructorOnly to true.
Reason: the braces () are missing when instantiating a class in the build() method of any DTO class.
Example:
public MyExampleDto build() {
MyExampleDto result = new MyExampleDto;
result.cursor(this.cursor);
result.node(this.node);
return result;
}
Issue Description
Since #1037, the plugin will generate classes that won't compile when setting
generateNoArgsConstructorOnlytotrue.Reason: the braces
()are missing when instantiating a class in thebuild()method of any DTO class.Example: