mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +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);
|
||||
}
|
||||
|
||||
public MyProcess exec(final String[] command) {
|
||||
public Process exec(final String[] command) {
|
||||
final MyProcess[] process = new MyProcess[1];
|
||||
final Throwable[] exception = new Throwable[1];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user