aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderWithDeprecatedAnnOnly.java
blob: 1d2d199c49a7e095a5e9a1c523f499988404d44f (plain)
1
2
3
4
5
6
7
8
9
10
import com.google.common.collect.ImmutableList;
import lombok.Builder;
import lombok.Singular;

@Builder
public class BuilderWithDeprecatedAnnOnly {
	@Deprecated int dep1;
	@Singular @Deprecated java.util.List<String> strings;
	@Singular @Deprecated ImmutableList<Integer> numbers;
}