diff options
Diffstat (limited to 'src/app/App.java')
| -rw-r--r-- | src/app/App.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/app/App.java b/src/app/App.java index 34c91ff..f652d66 100644 --- a/src/app/App.java +++ b/src/app/App.java @@ -4,12 +4,20 @@ import org.manzerbredes.open_klm.args.ArgsManager; import org.manzerbredes.open_klm.client.MainWindow; import org.manzerbredes.open_klm.drivers.*; + + /** - * Hello world! + * Open KLM Application * */ public class App { + + /** + * Entry point + * + * @param args + */ public static void main( String[] args ) { // Get driver @@ -25,7 +33,7 @@ public class App // Else run GUI try { - MainWindow mw = new MainWindow(aDriver); + new MainWindow(aDriver); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); |
