Code refactoring.
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Thu, 5 Jul 2018 23:31:24 +0000 (02:31 +0300)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Thu, 5 Jul 2018 23:31:24 +0000 (02:31 +0300)
src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/LauncherFrame.java [deleted file]
src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/Main.java

diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/LauncherFrame.java b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/LauncherFrame.java
deleted file mode 100755 (executable)
index bbb9e32..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Sixth 3D engine demos. Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 3 of the GNU Lesser General Public License
- * or later as published by the Free Software Foundation.
- */
-
-package eu.svjatoslav.sixth.e3d.examples.launcher;
-
-import javax.swing.*;
-import java.awt.*;
-
-class LauncherFrame extends javax.swing.JFrame {
-
-    private static final long serialVersionUID = -3679656169594556137L;
-
-    private LauncherFrame() {
-        super();
-        initGUI();
-
-    }
-
-    /**
-     * Auto-generated main method to display this JFrame
-     */
-    public static void main(final String[] args) {
-        SwingUtilities.invokeLater(() -> {
-            final LauncherFrame inst = new LauncherFrame();
-            final BorderLayout instLayout = new BorderLayout();
-            inst.setLocationRelativeTo(null);
-            inst.setVisible(true);
-            inst.getContentPane().setLayout(instLayout);
-        });
-    }
-
-    private void initGUI() {
-        getContentPane().add(new MenuPanel());
-        pack();
-        setSize(390, 300);
-    }
-
-}
index 5b970d4..512f30c 100755 (executable)
@@ -8,14 +8,36 @@
 
 package eu.svjatoslav.sixth.e3d.examples.launcher;
 
-/**
- * Main class to launch main menu with examples.
- */
+import javax.swing.*;
+import java.awt.*;
+
+class Main extends javax.swing.JFrame {
 
-class Main {
+    private static final long serialVersionUID = -3679656169594556137L;
 
+    private Main() {
+        super();
+        initGUI();
+
+    }
+
+    /**
+     * Auto-generated main method to display this JFrame
+     */
     public static void main(final String[] args) {
-        LauncherFrame.main(args);
+        SwingUtilities.invokeLater(() -> {
+            final Main inst = new Main();
+            final BorderLayout instLayout = new BorderLayout();
+            inst.setLocationRelativeTo(null);
+            inst.setVisible(true);
+            inst.getContentPane().setLayout(instLayout);
+        });
+    }
+
+    private void initGUI() {
+        getContentPane().add(new MenuPanel());
+        pack();
+        setSize(390, 300);
     }
 
 }