diff --git a/src/main/java/biz/nynja/account/models/ContactInfo.java b/src/main/java/biz/nynja/account/models/ContactInfo.java index a6c96b49eaf8f0ed421a2790a082419bdfb7ba86..5ae1b3c211aaa9c0a8705b126749119f77f4102e 100644 --- a/src/main/java/biz/nynja/account/models/ContactInfo.java +++ b/src/main/java/biz/nynja/account/models/ContactInfo.java @@ -18,7 +18,6 @@ public class ContactInfo implements Serializable { private String type; private String value; private String label; - private String countrySelector; public String getType() { return type; @@ -44,14 +43,6 @@ public class ContactInfo implements Serializable { this.label = label; } - public String getCountrySelector() { - return countrySelector; - } - - public void setCountrySelector(String countrySelector) { - this.countrySelector = countrySelector; - } - @Override public int hashCode() { final int prime = 31; @@ -100,7 +91,6 @@ public class ContactInfo implements Serializable { contactInfo.setType(contactDetails.getType().toString()); contactInfo.setValue(contactDetails.getValue()); contactInfo.setLabel(contactDetails.getLabel()); - contactInfo.setCountrySelector(contactDetails.getCountrySelector()); return contactInfo; }