> })
> - protected Address(int id, String country, @Nullable String state,
> @Nullable String description) {
> - this.id = id;
> - this.country = checkNotNull(emptyToNull(country), "country cannot be
> null or empty:" + country);
> + protected Address(int id, String country, @Nullable String state,
> @Nullable String description, @Nullable int accountId,
> + @Nullable String address, @Nullable String city,
> @Nullable String contactName,
> + @Nullable int isActive, @Nullable int locationId,
> @Nullable String postalCode) {
Primitive types can't be `null`; don't mark them as `@Nullable`.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11138368