Remove status bar.
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / swing / KeyStorePanel.java
index add7581..b4f766d 100644 (file)
@@ -28,8 +28,6 @@ import javax.swing.Action;
 import javax.swing.JPanel;
 import javax.swing.JToolBar;
 
-import net.pterodactylus.util.swing.StatusBar;
-
 /**
  * TODO
  *
@@ -43,9 +41,6 @@ public class KeyStorePanel extends JPanel {
        /** The tool bar. */
        private final JToolBar toolBar = new JToolBar();
 
-       /** The status bar. */
-       private final StatusBar statusBar = new StatusBar();
-
        /** The action to create a new key. */
        private Action createKeyAction;
 
@@ -61,7 +56,6 @@ public class KeyStorePanel extends JPanel {
                this.keyStore = keyStore;
                constructActions();
                constructPanel();
-               statusBar.setText(keyStore.getType() + " Key Store");
        }
 
        //
@@ -102,7 +96,6 @@ public class KeyStorePanel extends JPanel {
                toolBar.add(createKeyAction);
 
                add(toolBar, BorderLayout.PAGE_START);
-               add(statusBar, BorderLayout.PAGE_END);
        }
 
 }