Skip to content

Commit 350ed87

Browse files
committed
Fixed typo
1 parent f65e736 commit 350ed87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/processing/app/linux/Platform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ public boolean openFolderAvailable() {
105105

106106
public void openFolder(File file) throws Exception {
107107
if (openFolderAvailable()) {
108-
String lunch = Preferences.get("launcher");
108+
String launcher = Preferences.get("launcher");
109109
try {
110-
String[] params = new String[] { lunch, file.getAbsolutePath() };
110+
String[] params = new String[] { launcher, file.getAbsolutePath() };
111111
//processing.core.PApplet.println(params);
112112
/*Process p =*/ Runtime.getRuntime().exec(params);
113113
/*int result =*/ //p.waitFor();

0 commit comments

Comments
 (0)