From a49cdefeececce4fdedd0f6f9cdd043252e01653 Mon Sep 17 00:00:00 2001 From: Dragomir Todorov Date: Tue, 22 Jan 2019 14:57:58 +0200 Subject: [PATCH] NY-6771: Removed wrongly committed country info --- .../java/biz/nynja/account/models/ContactInfo.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main/java/biz/nynja/account/models/ContactInfo.java b/src/main/java/biz/nynja/account/models/ContactInfo.java index a6c96b4..5ae1b3c 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; } -- GitLab