Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #47 from constantcontact/revert-45-development
Browse files Browse the repository at this point in the history
Revert "Add state to address"
  • Loading branch information
csciuto committed Jan 5, 2015
2 parents f81fd76 + 3dd1712 commit 86b8354
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions src/main/java/com/constantcontact/components/contacts/Address.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public class Address implements Serializable {
@JsonIgnore
private String addressType;
@JsonIgnore
private String state;
@JsonIgnore
private String stateCode;
@JsonIgnore
private String countryCode;
Expand Down Expand Up @@ -155,25 +153,6 @@ public void setAddressType(String addressType) {
this.addressType = addressType;
}

/**
* Gets the state.
*
* @return The state.
*/
@JsonProperty("state")
public String getState() {
return state;
}

/**
* Sets the state.
*
* @param state The state.
*/
public void setState(String state) {
this.state = state;
}

/**
* Gets the state code.
*
Expand Down Expand Up @@ -273,8 +252,6 @@ public String toString() {
builder.append(city);
builder.append(", addressType=");
builder.append(addressType);
builder.append(", state=");
builder.append(state);
builder.append(", stateCode=");
builder.append(stateCode);
builder.append(", countryCode=");
Expand Down

0 comments on commit 86b8354

Please sign in to comment.