From: Roland Häder Date: Mon, 20 Jun 2016 08:54:44 +0000 (+0200) Subject: applied naming convention (due to updated jar; please cherry-pick this) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=30848ef392096a114a59e931ff7681e097326fe0;p=addressbook-war.git applied naming convention (due to updated jar; please cherry-pick this) --- diff --git a/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebRequestBean.java b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebRequestBean.java index a46fee02..20a594c1 100644 --- a/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebRequestBean.java +++ b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebRequestBean.java @@ -124,7 +124,7 @@ public class AddressbookAdminCountryWebRequestBean extends BaseAddressbookContro country.setCountryAbroadDialPrefix(this.getCountryAbroadDialPrefix()); country.setCountryCode(this.getCountryCode()); country.setCountryExternalDialPrefix(this.getCountryExternalDialPrefix()); - country.setCountryI18nkey(this.getCountryI18nKey()); + country.setCountryI18nKey(this.getCountryI18nKey()); country.setCountryIsLocalPrefixRequired(this.getCountryIsLocalPrefixRequired()); country.setCountryPhoneCode(this.getCountryPhoneCode()); @@ -236,7 +236,7 @@ public class AddressbookAdminCountryWebRequestBean extends BaseAddressbookContro Country next = iterator.next(); // Is country code or i18n the same? - if ((Objects.equals(country.getCountryCode(), next.getCountryCode())) || (Objects.equals(country.getCountryI18nkey(), next.getCountryI18nkey()))) { + if ((Objects.equals(country.getCountryCode(), next.getCountryCode())) || (Objects.equals(country.getCountryI18nKey(), next.getCountryI18nKey()))) { // Yes, then abort search isAdded = true; break;