From 080cbc153d1f6c8a7275bb942e6811469fc92da0 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 3 Sep 2020 12:11:45 -0400 Subject: [PATCH] Fix bugs in ExecUtil --- Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java b/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java index 77a463ca17..22d4899c7b 100644 --- a/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/ExecUtil.java @@ -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(); }