]> git.mxchange.org Git - pizzaservice-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>
Wed, 27 Jul 2016 20:41:41 +0000 (22:41 +0200)
src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebRequestBean.java

index 4e6a7ad422c88e6132d77ed5540f9632e176b481..6101a458f33f87bf65e667b0f47978948783464d 100644 (file)
@@ -124,7 +124,7 @@ public class PizzaAdminCountryWebRequestBean extends BasePizzaController impleme
                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());
 
@@ -263,7 +263,7 @@ public class PizzaAdminCountryWebRequestBean extends BasePizzaController impleme
                        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;