fix regression in last commit

My last commit unintentionally changed the return type of Runtime.exec
to Runtime.MyProcess instead of Process.
This commit is contained in:
Joel Dice 2010-11-09 11:21:55 -07:00
parent 3d18f88ad9
commit ababc5748d

View File

@ -52,7 +52,7 @@ public class Runtime {
return exec(cmd);
}
public MyProcess exec(final String[] command) {
public Process exec(final String[] command) {
final MyProcess[] process = new MyProcess[1];
final Throwable[] exception = new Throwable[1];