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=fcc0b0d67a7ca563081195a01394cfd96ba8a67e;p=jjobs-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/JobsCountrySingletonBean.java b/src/java/org/mxchange/jcountry/data/JobsCountrySingletonBean.java index c75f469..98a2612 100644 --- a/src/java/org/mxchange/jcountry/data/JobsCountrySingletonBean.java +++ b/src/java/org/mxchange/jcountry/data/JobsCountrySingletonBean.java @@ -52,7 +52,7 @@ public class JobsCountrySingletonBean extends BaseJobsDatabaseBean implements Co } 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 JobsCountrySingletonBean extends BaseJobsDatabaseBean implements Co } 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 JobsCountrySingletonBean extends BaseJobsDatabaseBean implements Co // 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 {