[fixes #2046] you can now suppress the builder() method, useful if you only want toBuilder(). Also suppresses the warnings about any missing Builder.Default annotations.

This commit is contained in:
Reinier Zwitserloot
2019-03-25 23:11:48 +01:00
parent 535e20972c
commit 228e99fe52
8 changed files with 118 additions and 7 deletions
@@ -0,0 +1,5 @@
import lombok.Builder;
@Builder(toBuilder = true, builderMethodName = "")
class BuilderWithNoBuilderMethod {
private String a = "";
}