From 350ed87af398557b97df606ade93f9f065bd048e Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 5 Aug 2013 15:06:20 +0200 Subject: [PATCH] Fixed typo --- app/src/processing/app/linux/Platform.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/linux/Platform.java b/app/src/processing/app/linux/Platform.java index c084ae70f..d12a4da77 100644 --- a/app/src/processing/app/linux/Platform.java +++ b/app/src/processing/app/linux/Platform.java @@ -105,9 +105,9 @@ public class Platform extends processing.app.Platform { public void openFolder(File file) throws Exception { if (openFolderAvailable()) { - String lunch = Preferences.get("launcher"); + String launcher = Preferences.get("launcher"); try { - String[] params = new String[] { lunch, file.getAbsolutePath() }; + String[] params = new String[] { launcher, file.getAbsolutePath() }; //processing.core.PApplet.println(params); /*Process p =*/ Runtime.getRuntime().exec(params); /*int result =*/ //p.waitFor();