improved and added to test cases for @Builder.

Eclipse's implementation continues to pass them all.
This commit is contained in:
Reinier Zwitserloot
2013-06-16 13:20:54 +02:00
parent 648c3eeee6
commit 9066d57ed9
4 changed files with 107 additions and 1 deletions
@@ -2,6 +2,6 @@ import java.util.List;
import lombok.experimental.Builder;
class BuilderComplex {
@Builder
@Builder(buildMethodName = "execute")
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, BuilderComplex selfRef) {}
}