mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 14:21:47 +00:00
a2ebb4ce36
The `test.javac6` job causes a ton of errors because many tests use java8+ features. Marking them off as java8+ targeted only.
11 lines
378 B
Java
11 lines
378 B
Java
//CONF: lombok.builder.className = Test*Name
|
|
import java.util.List;
|
|
import lombok.Builder;
|
|
import lombok.extern.jackson.Jacksonized;
|
|
|
|
class JacksonizedBuilderComplex {
|
|
@Jacksonized
|
|
@Builder(buildMethodName = "execute", setterPrefix = "with")
|
|
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, JacksonizedBuilderComplex selfRef) {}
|
|
}
|