diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java index 1541eff328..771bd1b94a 100644 --- a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java +++ b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java @@ -32,7 +32,7 @@ import org.sleuthkit.autopsy.ingest.IngestModuleInit; import org.sleuthkit.autopsy.ingest.IngestServices; import org.sleuthkit.autopsy.ingest.ModuleContentEvent; import org.sleuthkit.autopsy.ingest.PipelineContext; -import org.sleuthkit.autopsy.scalpel.ScalpelOutputParser.CarvedFileMeta; +import org.sleuthkit.autopsy.scalpel.jni.ScalpelOutputParser.CarvedFileMeta; import org.sleuthkit.autopsy.scalpel.jni.ScalpelCarver; import org.sleuthkit.autopsy.scalpel.jni.ScalpelException; import org.sleuthkit.datamodel.AbstractFile; diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelCarver.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelCarver.java index 353616dab6..ce31484016 100644 --- a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelCarver.java +++ b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelCarver.java @@ -26,8 +26,7 @@ import java.util.Collections; import java.util.List; import java.util.logging.Level; import org.sleuthkit.autopsy.coreutils.Logger; -import org.sleuthkit.autopsy.scalpel.ScalpelOutputParser; -import org.sleuthkit.autopsy.scalpel.ScalpelOutputParser.CarvedFileMeta; +import org.sleuthkit.autopsy.scalpel.jni.ScalpelOutputParser.CarvedFileMeta; import org.sleuthkit.datamodel.AbstractFile; import org.sleuthkit.datamodel.ReadContentInputStream; diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelOutputParser.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelOutputParser.java similarity index 98% rename from ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelOutputParser.java rename to ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelOutputParser.java index 6af1e9e3fa..6b78ee5131 100644 --- a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelOutputParser.java +++ b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/jni/ScalpelOutputParser.java @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.sleuthkit.autopsy.scalpel; +package org.sleuthkit.autopsy.scalpel.jni; import java.io.BufferedReader; import java.io.File;