mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
12 lines
310 B
Java
12 lines
310 B
Java
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;
|
|
}
|