mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Fixed typo
This commit is contained in:
@ -105,9 +105,9 @@ public class Platform extends processing.app.Platform {
|
|||||||
|
|
||||||
public void openFolder(File file) throws Exception {
|
public void openFolder(File file) throws Exception {
|
||||||
if (openFolderAvailable()) {
|
if (openFolderAvailable()) {
|
||||||
String lunch = Preferences.get("launcher");
|
String launcher = Preferences.get("launcher");
|
||||||
try {
|
try {
|
||||||
String[] params = new String[] { lunch, file.getAbsolutePath() };
|
String[] params = new String[] { launcher, file.getAbsolutePath() };
|
||||||
//processing.core.PApplet.println(params);
|
//processing.core.PApplet.println(params);
|
||||||
/*Process p =*/ Runtime.getRuntime().exec(params);
|
/*Process p =*/ Runtime.getRuntime().exec(params);
|
||||||
/*int result =*/ //p.waitFor();
|
/*int result =*/ //p.waitFor();
|
||||||
|
Reference in New Issue
Block a user