From 0978ef36d30e7e7bfce5e62a010ab775ab3d7736 Mon Sep 17 00:00:00 2001 From: jdf Date: Sat, 27 Feb 2010 14:20:14 +0000 Subject: [PATCH] Undo unneeded changes --- android/core/src/processing/core/PApplet.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/android/core/src/processing/core/PApplet.java b/android/core/src/processing/core/PApplet.java index 196867221..8b7f3e4d5 100644 --- a/android/core/src/processing/core/PApplet.java +++ b/android/core/src/processing/core/PApplet.java @@ -44,7 +44,6 @@ import android.util.Log; import android.view.SurfaceView; import android.view.WindowManager; import android.os.Bundle; -import android.os.Process; import android.view.*; @@ -1897,12 +1896,12 @@ public class PApplet extends Activity implements PConstants, Runnable { * (This avoids the situation of trying to put single or double quotes * around different bits). */ - static public java.lang.Process open(String argv[]) { + static public Process open(String argv[]) { return exec(argv); } - static public java.lang.Process exec(String[] argv) { + static public Process exec(String[] argv) { try { return Runtime.getRuntime().exec(argv); } catch (Exception e) {