]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
fixed camel-case in newly renamed method (please cherry-pick)
authorRoland Haeder <roland@mxchange.org>
Sat, 6 Aug 2016 21:04:41 +0000 (23:04 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 6 Aug 2016 21:56:27 +0000 (23:56 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcountry/data/JobsCountrySingletonBean.java

index c75f469984b650eb68ec1fa672e88e8c4960138e..98a261247860a6bffa2736f11d2735cf6afc5b32 100644 (file)
@@ -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 {