mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 08:21:35 +00:00
12 lines
323 B
Java
12 lines
323 B
Java
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;
|
|
}
|