mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
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:
parent
3d18f88ad9
commit
ababc5748d
@ -52,7 +52,7 @@ public class Runtime {
|
|||||||
return exec(cmd);
|
return exec(cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
public MyProcess exec(final String[] command) {
|
public Process exec(final String[] command) {
|
||||||
final MyProcess[] process = new MyProcess[1];
|
final MyProcess[] process = new MyProcess[1];
|
||||||
final Throwable[] exception = new Throwable[1];
|
final Throwable[] exception = new Throwable[1];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user