]> git.mxchange.org Git - jjobs-mailer-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:04:58 +0000 (23:04 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcountry/data/AddressbookCountrySingletonBean.java

index d3d196e9e87491f197e1d6edb4f02a756794d2a9..05cde2dff437bbc8c0c702575209cc076c5fc757 100644 (file)
@@ -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 {