diff --git a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java index 8ed0b26b60..93a1f1505d 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java @@ -1213,11 +1213,11 @@ public final class DataSourceIngestJob { return this.dataSourceLevelIngestModule; } - boolean fileIngestIsRunning() { + boolean getFileIngestIsRunning() { return this.fileIngestRunning; } - Date fileIngestStartTime() { + Date getFileIngestStartTime() { return this.fileIngestStartTime; } diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java index 33d767fb00..720313ba15 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java @@ -355,10 +355,10 @@ public final class IngestJob { dataSourceModule = new DataSourceIngestModuleHandle(dataSourceJobs.get(snapshot.getJobId()), module); } } - if (snapshot.fileIngestIsRunning()) { + if (snapshot.getFileIngestIsRunning()) { fileIngestRunning = true; } - Date childFileIngestStartTime = snapshot.fileIngestStartTime(); + Date childFileIngestStartTime = snapshot.getFileIngestStartTime(); if (null != childFileIngestStartTime && (null == fileIngestStartTime || childFileIngestStartTime.before(fileIngestStartTime))) { fileIngestStartTime = childFileIngestStartTime; } diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestProgressSnapshotProvider.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestProgressSnapshotProvider.java index 646c09bbf7..511939e1f9 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestProgressSnapshotProvider.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestProgressSnapshotProvider.java @@ -31,19 +31,19 @@ public interface IngestProgressSnapshotProvider { * * @return A list of IngestThreadActivitySnapshot */ - public List getIngestThreadActivitySnapshots(); + List getIngestThreadActivitySnapshots(); /** * Get a snapshot of the state of ingest jobs. * * @return A list of ingest job snapshots. */ - public List getIngestJobSnapshots(); + List getIngestJobSnapshots(); /** * Gets the cumulative run times for the ingest module. * * @return Map of module name to run time (in milliseconds) */ - public Map getModuleRunTimes(); + Map getModuleRunTimes(); } diff --git a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/AutoIngestAdminActions.java b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/AutoIngestAdminActions.java index b4bbb61562..f17372f055 100644 --- a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/AutoIngestAdminActions.java +++ b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/AutoIngestAdminActions.java @@ -156,7 +156,7 @@ final class AutoIngestAdminActions { if (tc != null) { AutoIngestDashboard dashboard = tc.getAutoIngestDashboard(); if (dashboard != null) { - IngestProgressSnapshotDialog ingestProgressSnapshotDialog = new IngestProgressSnapshotDialog(dashboard.getTopLevelAncestor(), true, job); + new IngestProgressSnapshotDialog(dashboard.getTopLevelAncestor(), true, job); } } }