blob: cd8ffad99de5d6a0a9dc35f582db3bb54e7bc2b0 (
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
public class BuilderWithDeprecated {
/** @deprecated */ String dep1;
@Deprecated int dep2;
@Singular @Deprecated java.util.List<String> strings;
@Singular @Deprecated ImmutableList<Integer> numbers;
}
|