From: Roland Haeder Date: Sat, 6 Aug 2016 21:04:41 +0000 (+0200) Subject: fixed camel-case in newly renamed method (please cherry-pick) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d673acd9ba8947c52c7b0ba6aa0b21e606de8c90;p=addressbook-ejb.git fixed camel-case in newly renamed method (please cherry-pick) Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/jcountry/data/AddressbookCountrySingletonBean.java b/src/java/org/mxchange/jcountry/data/AddressbookCountrySingletonBean.java index d3d196e..05cde2d 100644 --- a/src/java/org/mxchange/jcountry/data/AddressbookCountrySingletonBean.java +++ b/src/java/org/mxchange/jcountry/data/AddressbookCountrySingletonBean.java @@ -52,7 +52,7 @@ public class AddressbookCountrySingletonBean extends BaseDatabaseBean 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) { @@ -113,7 +113,7 @@ public class AddressbookCountrySingletonBean extends BaseDatabaseBean 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) { @@ -129,7 +129,7 @@ public class AddressbookCountrySingletonBean extends BaseDatabaseBean 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 {