From d673acd9ba8947c52c7b0ba6aa0b21e606de8c90 Mon Sep 17 00:00:00 2001
From: Roland Haeder <roland@mxchange.org>
Date: Sat, 6 Aug 2016 23:04:41 +0200
Subject: [PATCH] fixed camel-case in newly renamed method (please cherry-pick)
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 .../jcountry/data/AddressbookCountrySingletonBean.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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 {
-- 
2.39.5