From 5633dbde27a15ea738e89bf1821c9008992d8816 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 20 Jun 2016 10:54:44 +0200 Subject: [PATCH] applied naming convention (due to updated jar; please cherry-pick this) --- .../beans/country/PizzaAdminCountryWebRequestBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebRequestBean.java b/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebRequestBean.java index 4e6a7ad4..6101a458 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebRequestBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebRequestBean.java @@ -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; -- 2.39.5