From: Roland Haeder <roland@mxchange.org>
Date: Fri, 18 Sep 2015 09:49:00 +0000 (+0200)
Subject: Need to init with null
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e5ab52aeaa1572edd0281d9c357671e553fb0edb;p=jfinancials-lib.git

Need to init with null
Signed-off-by:Roland Häder <roland@mxchange.org>
---

diff --git a/src/org/mxchange/addressbook/application/AddressbookApplication.java b/src/org/mxchange/addressbook/application/AddressbookApplication.java
index 7dbbf57..ad4544a 100644
--- a/src/org/mxchange/addressbook/application/AddressbookApplication.java
+++ b/src/org/mxchange/addressbook/application/AddressbookApplication.java
@@ -164,7 +164,7 @@ public class AddressbookApplication extends BaseFrameworkSystem implements Appli
 		this.getLogger().debug("Initializing application ..."); //NOI18N
 
 		// Init client variable
-		Client client;
+		Client client = null;
 
 		// Is console or Swing choosen?
 		if (this.isConsole()) {