From: Roland Häder Date: Mon, 20 Jun 2016 08:54:24 +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=5ee3fd1f251a76086b287664dc17315fc82c60ee;p=pizzaservice-ejb.git applied naming convention (due to updated jar; please cherry-pick this) Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/jcountry/data/PizzaCountrySingletonBean.java b/src/java/org/mxchange/jcountry/data/PizzaCountrySingletonBean.java index 8756060..f71df88 100644 --- a/src/java/org/mxchange/jcountry/data/PizzaCountrySingletonBean.java +++ b/src/java/org/mxchange/jcountry/data/PizzaCountrySingletonBean.java @@ -49,7 +49,7 @@ public class PizzaCountrySingletonBean extends BasePizzaDatabaseBean implements } else if (country.getCountryCode().isEmpty()) { // Code is not set throw new IllegalArgumentException("country.countryCode is empty"); //NOI18N - } else if (country.getCountryI18nkey().isEmpty()) { + } else if (country.getCountryI18nKey().isEmpty()) { // I18n key is not set throw new IllegalArgumentException("country.countryI18nKey is empty"); //NOI18N } else if (country.getCountryId() != null) { @@ -98,7 +98,7 @@ public class PizzaCountrySingletonBean extends BasePizzaDatabaseBean implements } else if (country.getCountryCode().isEmpty()) { // Code is not set throw new IllegalArgumentException("country.countryCode is empty"); //NOI18N - } else if (country.getCountryI18nkey().isEmpty()) { + } else if (country.getCountryI18nKey().isEmpty()) { // I18n key is not set throw new IllegalArgumentException("country.countryI18nKey is empty"); //NOI18N } else if (country.getCountryId() != null) { @@ -114,7 +114,7 @@ public class PizzaCountrySingletonBean extends BasePizzaDatabaseBean implements // Assign all parameters query.setParameter("code", country.getCountryCode()); //NOI18N - query.setParameter("key", country.getCountryI18nkey()); //NOI18N + query.setParameter("key", country.getCountryI18nKey()); //NOI18N // Try to get a single result try {