From f7bab28858ec8f6a29944fdc1cc5f2985e4aab31 Mon Sep 17 00:00:00 2001 From: Eugene Livis Date: Fri, 10 Feb 2017 13:03:00 -0500 Subject: [PATCH] Fixed build error --- .../org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java | 1 + .../autopsy/test/CustomArtifactsCreatorIngestModuleFactory.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java index 32955610f8..bbc5ffda17 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java @@ -19,6 +19,7 @@ package org.sleuthkit.autopsy.datamodel; import java.text.SimpleDateFormat; +import java.util.Arrays; import java.util.logging.Level; import org.apache.commons.lang.StringUtils; import org.openide.util.NbBundle; diff --git a/Core/src/org/sleuthkit/autopsy/test/CustomArtifactsCreatorIngestModuleFactory.java b/Core/src/org/sleuthkit/autopsy/test/CustomArtifactsCreatorIngestModuleFactory.java index f16c70369a..37f55eaa33 100644 --- a/Core/src/org/sleuthkit/autopsy/test/CustomArtifactsCreatorIngestModuleFactory.java +++ b/Core/src/org/sleuthkit/autopsy/test/CustomArtifactsCreatorIngestModuleFactory.java @@ -18,8 +18,10 @@ */ package org.sleuthkit.autopsy.test; +import org.openide.util.lookup.ServiceProvider; import org.sleuthkit.autopsy.coreutils.Version; import org.sleuthkit.autopsy.ingest.FileIngestModule; +import org.sleuthkit.autopsy.ingest.IngestModuleFactory; import org.sleuthkit.autopsy.ingest.IngestModuleFactoryAdapter; import org.sleuthkit.autopsy.ingest.IngestModuleIngestJobSettings;