blob: 1641ccb4a561a68a5d4129e239f0644d2f2ca0bd (
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 since always */ String dep1;
@Deprecated int dep2;
@Singular @Deprecated java.util.List<String> strings;
@Singular @Deprecated ImmutableList<Integer> numbers;
}
|