From 1ce585e9061d6ac2c2e6b7fa93255f4314164b37 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 29 Dec 2014 10:25:28 -0500 Subject: [PATCH] Add missing synchronized keyword to IngestJob method --- Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java index fe129c3528..8218186b4c 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java @@ -73,7 +73,7 @@ public final class IngestJob { * * @return True or false. */ - boolean hasIngestPipeline() { + synchronized boolean hasIngestPipeline() { for (DataSourceIngestJob dataSourceJob : this.dataSourceJobs.values()) { if (dataSourceJob.hasIngestPipeline()) { return true;