From 86ecb194d72dc8bdad6a0aae90c5a3787391d420 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 20 Feb 2016 21:42:01 +0100 Subject: [PATCH] Some empty lines added/removed --- .../application/AddressbookApplication.java | 1 - .../client/gui/AddressbookFrame.java | 40 +++++++++---------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/src/org/mxchange/addressbook/application/AddressbookApplication.java b/src/org/mxchange/addressbook/application/AddressbookApplication.java index d898999..866809a 100644 --- a/src/org/mxchange/addressbook/application/AddressbookApplication.java +++ b/src/org/mxchange/addressbook/application/AddressbookApplication.java @@ -389,5 +389,4 @@ public class AddressbookApplication extends BaseApplication implements Applicati this.getLoggerBeanLocal().logException(exception); } - } diff --git a/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java b/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java index 01fbd52..da6d4bd 100644 --- a/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java +++ b/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java @@ -675,16 +675,16 @@ public class AddressbookFrame extends BaseAddressbookSystem implements ClientFra // Add menu items: // 1.x) Exit program (should be last) this.addMenuItem(menu, "exitProgram", new ActionListener() { //NOI18N - /** - * If the user has performed this action - *

- * @param e An instance of an ActionEvent class - */ - @Override - public void actionPerformed (final ActionEvent e) { - self.shutdownApplication(); - } - }); + /** + * If the user has performed this action + *

+ * @param e An instance of an ActionEvent class + */ + @Override + public void actionPerformed (final ActionEvent e) { + self.shutdownApplication(); + } + }); // Add menu -> menu bar menuBar.add(menu); @@ -740,16 +740,16 @@ public class AddressbookFrame extends BaseAddressbookSystem implements ClientFra // Init more menus: // 1) Add new contact this.addMenuItem(menu, "addNewContact", new ActionListener() { //NOI18N - /** - * If the user has performed this action - *

- * @param e An instance of an ActionEvent class - */ - @Override - public void actionPerformed (final ActionEvent e) { - ((ContactFacade) self.getClient().getFacade()).doAddOtherAddress(); - } - }); + /** + * If the user has performed this action + *

+ * @param e An instance of an ActionEvent class + */ + @Override + public void actionPerformed (final ActionEvent e) { + ((ContactFacade) self.getClient().getFacade()).doAddOtherAddress(); + } + }); // Add menu -> menu bar menuBar.add(menu); -- 2.39.2