From: Roland Haeder Date: Sat, 20 Feb 2016 20:42:01 +0000 (+0100) Subject: Some empty lines added/removed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=86ecb194d72dc8bdad6a0aae90c5a3787391d420;p=addressbook-swing.git Some empty lines added/removed --- 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);