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.
12 lines
246 B
Java
12 lines
246 B
Java
//version 8:
|
|
//CONF: lombok.addNullAnnotations = spring
|
|
//CONF: lombok.nonNull.exceptionType = JDK
|
|
import java.util.List;
|
|
|
|
import lombok.Singular;
|
|
|
|
@lombok.Builder
|
|
class BuilderSingularNullBehavior2 {
|
|
@Singular private List<String> locations;
|
|
}
|