Fix bugs in ExecUtil

This commit is contained in:
Richard Cordovano 2020-09-03 12:11:45 -04:00
parent 3e526c59dc
commit 080cbc153d

View File

@ -292,7 +292,7 @@ public final class ExecUtil {
* process is still alive when the method is called. This code is set up
* so that the only way Process.exitValue() can be called is when it has
* not been bypassed by an exception and the preceding loop has
* terminated with Process.isA;ive == false.
* terminated with Process.isAlive == false.
*/
return process.exitValue();
}