Skip to content

Commit

Permalink
added System.exit(0) in main
Browse files Browse the repository at this point in the history
  • Loading branch information
Seil0 committed Oct 29, 2017
1 parent eb12728 commit e4a316f
Show file tree
Hide file tree
Showing 17 changed files with 8 additions and 4 deletions.
5 changes: 2 additions & 3 deletions bin/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/cloudControllerInstances/
/libraries/
/resources/
/application/
/cloudControllerInstances/
/datatypes/
Binary file modified bin/application/Main.class
Binary file not shown.
Binary file modified bin/application/MainWindowController.class
Binary file not shown.
Binary file added bin/libraries/commons-logging-1.1.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions src/application/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,9 @@ public static void main(String[] args) {
LOGGER = LogManager.getLogger(Main.class.getName());
launch(args);
}

@Override
public void stop() {
System.exit(0);
}
}
2 changes: 1 addition & 1 deletion src/application/MainWindowController.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public class MainWindowController {
private String selectedGameTitle;
private String id;
private String version = "0.2.0";
private String buildNumber = "045";
private String buildNumber = "047";
private String versionName = "Puzzle Plank Galaxy";
private int xPos = -200;
private int yPos = 17;
Expand Down

0 comments on commit e4a316f

Please sign in to comment.