From 73e4f647b1f5a2dda8fe2a99daa1d5cd86d694f8 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Tue, 30 Nov 2021 17:57:02 -0500 Subject: [PATCH] 8202 fix progress bar IllegalArgumentException --- Core/src/org/sleuthkit/autopsy/ingest/IngestJobExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobExecutor.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobExecutor.java index 31df9b39f6..83c705acb1 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobExecutor.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobExecutor.java @@ -1376,7 +1376,8 @@ final class IngestJobExecutor { SwingUtilities.invokeLater(() -> { /* * Note that if processedFiles exceeds estimatedFilesToProcess, - * the progress bar will go into an infinte loop throwing + * i.e., max work units fopr the progress bar, the progress bar + * will go into an infinte loop throwing * IllegalArgumentExceptions in the EDT. */ long processedFilesCapture = processedFiles;