User.java:8: error: constructor User in class User cannot be applied to given types;
User u = new User();
^
required: Long
found: no arguments
reason: actual and formal argument lists differ in length
1 error
--
You received this message because you are subscribed to the Google Groups "Project Lombok" group.
To unsubscribe from this group and stop receiving emails from it, send an email to project-lombo...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Any update on this?
--
I see some utility in changing the behaviour of @Builder so that just '@Builder @NoArgsConstructor' will do what you want, that is, that just those two would do what currently requires all 3: "@Builder @NoArgsConstructor @AllArgsConstructor'.