Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

Commit

Permalink
minor cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed May 30, 2014
1 parent 356b81a commit 6c0cb7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion example-config-mac.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"platform": "mac",
"jdk": "/Users/badlogic/Downloads/openjdk-1.7.0-u45-unofficial-icedtea-2.4.3-macosx-x86_64-image.zip",
"executable": "myapp",
"appjar": "target/packr-1.1-SNAPSHOT.jar",
"appjar": "target/packr-1.2-SNAPSHOT.jar",
"mainclass": "com/badlogicgames/packr/TestApp",
"vmargs": [
"-Xmx1G"
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/badlogicgames/packr/TestApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
******************************************************************************/
package com.badlogicgames.packr;

import java.io.File;

import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class TestApp {
public static void main (String[] args) {
Expand All @@ -24,5 +27,6 @@ public static void main (String[] args) {
frame.setTitle("My Test App");
frame.setSize(480, 320);
frame.setVisible(true);
JOptionPane.showConfirmDialog(null, "Working dir: " + new File(".").getAbsolutePath());
}
}

0 comments on commit 6c0cb7e

Please sign in to comment.