From: Roland Haeder <roland@mxchange.org>
Date: Tue, 21 Jul 2015 11:39:27 +0000 (+0200)
Subject: This call is no more needed
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e92fd10e2b96699c4421caf64d1db53cfd5e3524;p=addressbook-swing.git

This call is no more needed
Signed-off-by:Roland Häder <roland@mxchange.org>
---

diff --git a/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java b/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java
index 44ce5b2..d922a49 100644
--- a/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java
+++ b/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java
@@ -150,6 +150,7 @@ public class BaseFrameworkSystem implements FrameworkInterface {
 
     /**
      * Initializes contact manager
+     * 
      * @param client Client instance
      */
     protected void initContactManager (final Client client) {
diff --git a/Addressbook/src/org/mxchange/addressbook/client/gui/SwingClient.java b/Addressbook/src/org/mxchange/addressbook/client/gui/SwingClient.java
index 83417e1..87686e9 100644
--- a/Addressbook/src/org/mxchange/addressbook/client/gui/SwingClient.java
+++ b/Addressbook/src/org/mxchange/addressbook/client/gui/SwingClient.java
@@ -41,9 +41,6 @@ public class SwingClient extends BaseClient implements Client {
 
 	// Init contact manager here
 	this.initContactManager(this);
-
-	// Fill menu map
-	this.fillMenuMap();
     }
 
     @Override
@@ -131,6 +128,6 @@ public class SwingClient extends BaseClient implements Client {
     @Override
     protected final void fillMenuMap () {
 	// Nothing to fill here as the Swing frame is handling this all
+	throw new UnsupportedOperationException("Not implemented.");
     }
-    
 }