From: Roland Haeder <roland@mxchange.org>
Date: Thu, 6 Aug 2015 09:15:00 +0000 (+0200)
Subject: Better init it here
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f2d1ef8978275bd9a6f0ff9b1a8fe187f65f1618;p=jfinancials-lib.git

Better init it here
Signed-off-by:Roland Häder <roland@mxchange.org>
---

diff --git a/Addressbook/src/org/mxchange/addressbook/BaseAddressbookSystem.java b/Addressbook/src/org/mxchange/addressbook/BaseAddressbookSystem.java
index 9103d4e..16c49c3 100644
--- a/Addressbook/src/org/mxchange/addressbook/BaseAddressbookSystem.java
+++ b/Addressbook/src/org/mxchange/addressbook/BaseAddressbookSystem.java
@@ -28,7 +28,5 @@ public class BaseAddressbookSystem extends BaseFrameworkSystem {
 	 * No instances can be created of this class
 	 */
 	protected BaseAddressbookSystem () {
-		// Always init i18n bundle
-		this.initBundle();
 	}
 }
diff --git a/Addressbook/src/org/mxchange/addressbook/application/AddressbookApplication.java b/Addressbook/src/org/mxchange/addressbook/application/AddressbookApplication.java
index 99be0be..9780aed 100644
--- a/Addressbook/src/org/mxchange/addressbook/application/AddressbookApplication.java
+++ b/Addressbook/src/org/mxchange/addressbook/application/AddressbookApplication.java
@@ -149,6 +149,9 @@ public class AddressbookApplication extends BaseAddressbookSystem implements App
 	protected AddressbookApplication () {
 		// Set own instance
 		selfInstance = this;
+
+		// Always init i18n bundle in this application
+		this.initBundle();
 	}
 
 	/**