Move class to keyword search module - it's only used there for now.

This commit is contained in:
adam-m 2012-04-25 10:06:06 -04:00
parent ab93a84ae5
commit b6505785a2
3 changed files with 2 additions and 4 deletions

View File

@ -24,8 +24,7 @@ import java.io.InputStreamReader;
import java.io.Reader; import java.io.Reader;
import java.util.logging.Logger; import java.util.logging.Logger;
import org.apache.solr.common.util.ContentStream; import org.apache.solr.common.util.ContentStream;
import org.sleuthkit.autopsy.coreutils.FsContentStringStream; import org.sleuthkit.autopsy.keywordsearch.FsContentStringStream.Encoding;
import org.sleuthkit.autopsy.coreutils.FsContentStringStream.Encoding;
import org.sleuthkit.datamodel.FsContent; import org.sleuthkit.datamodel.FsContent;
/** /**

View File

@ -1,4 +1,4 @@
package org.sleuthkit.autopsy.coreutils; package org.sleuthkit.autopsy.keywordsearch;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@ -33,7 +33,6 @@ import org.netbeans.api.progress.ProgressHandle;
import org.netbeans.api.progress.ProgressHandleFactory; import org.netbeans.api.progress.ProgressHandleFactory;
import org.openide.util.Cancellable; import org.openide.util.Cancellable;
import org.sleuthkit.autopsy.casemodule.Case; import org.sleuthkit.autopsy.casemodule.Case;
import org.sleuthkit.autopsy.coreutils.FsContentStringStream;
import org.sleuthkit.autopsy.ingest.IngestManager; import org.sleuthkit.autopsy.ingest.IngestManager;
import org.sleuthkit.autopsy.ingest.IngestManagerProxy; import org.sleuthkit.autopsy.ingest.IngestManagerProxy;
import org.sleuthkit.autopsy.ingest.IngestMessage; import org.sleuthkit.autopsy.ingest.IngestMessage;