From 2b87acaa4993a15008093b5ec0cffcf8a4dca133 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 10 Jun 2017 19:39:04 +0200 Subject: [PATCH] fixed tpzo + added country (unfinished) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/org/mxchange/jusercore/model/user/UserUtils.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/org/mxchange/jusercore/model/user/UserUtils.java b/src/org/mxchange/jusercore/model/user/UserUtils.java index 29ddf52..c15b8bc 100644 --- a/src/org/mxchange/jusercore/model/user/UserUtils.java +++ b/src/org/mxchange/jusercore/model/user/UserUtils.java @@ -364,8 +364,9 @@ public class UserUtils implements Serializable { properties.setProperty("contactTitle", ""); //NOI18N properties.setProperty("contactStreet", ""); //NOI18N properties.setProperty("contactHouseNumber", ""); //NOI18N - properties.setProperty("contacCity", ""); //NOI18N - properties.setProperty("contacCity", ""); //NOI18N + properties.setProperty("contactCity", ""); //NOI18N + // @TODO Unfinished: + properties.setProperty("contactCountry", ""); //NOI18N properties.setProperty("contactZipCode", ""); //NOI18N properties.setProperty("contactBirthday", ""); //NOI18N properties.setProperty("contactEmailAddress", ""); //NOI18N @@ -401,7 +402,7 @@ public class UserUtils implements Serializable { properties.setProperty("contactHouseNumber", Short.toString(user.getUserContact().getContactHouseNumber())); //NOI18N } if (user.getUserContact().getContactCity() != null) { - properties.setProperty("contacCity", user.getUserContact().getContactCity()); //NOI18N + properties.setProperty("contactCity", user.getUserContact().getContactCity()); //NOI18N } if (user.getUserContact().getContactZipCode() != null) { properties.setProperty("contactZipCode", Integer.toString(user.getUserContact().getContactZipCode())); //NOI18N -- 2.39.5