Skip to content

Commit

Permalink
Removed development mode check
Browse files Browse the repository at this point in the history
  • Loading branch information
brentco committed Oct 4, 2015
1 parent a8bd82e commit b58791e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ public void start(Stage primaryStage) {
* @param args the command line arguments
*/
public static void main(String[] args) {
DEVELOPMENT_MODE = args.length > 0 && args[0].equals("development");
if (DEVELOPMENT_MODE) {
System.out.println("DEV MODE!");
}
// DEVELOPMENT_MODE = args.length > 0 && args[0].equals("development");
// if (DEVELOPMENT_MODE) {
// System.out.println("DEV MODE!");
// }
launch(args);
}

Expand Down

0 comments on commit b58791e

Please sign in to comment.