1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

Merge pull request #1009 from rcordovano/ingest_job_class_synch_fix

Add missing synchronized keyword to IngestJob method
This commit is contained in:
Richard Cordovano
2014-12-29 10:26:14 -05:00

View File

@@ -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;