]> git.mxchange.org Git - addressbook-war.git/commitdiff
applied naming convention (due to updated jar; please cherry-pick this)
authorRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2016 08:54:44 +0000 (10:54 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 28 Jul 2016 19:50:24 +0000 (21:50 +0200)
src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebRequestBean.java

index a46fee02a5c15d697a00f87f30ea3e62734df775..20a594c16ae5066105158ad64316414e8f32dc8b 100644 (file)
@@ -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;