blob: 5047de453ff62320791d8b6430c8dc7f62e9bf35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import com.google.common.collect.ImmutableList;
import lombok.Builder;
import lombok.Singular;
@Builder(setterPrefix = "with")
public class BuilderWithDeprecated {
/** @deprecated since always */ String dep1;
@Deprecated int dep2;
@Singular @Deprecated java.util.List<String> strings;
@Singular @Deprecated ImmutableList<Integer> numbers;
}
|