From eda8e09184160f23f456c0999e51cb0430aa40ad Mon Sep 17 00:00:00 2001 From: momo Date: Thu, 8 Oct 2015 10:49:20 -0400 Subject: [PATCH] remove uneeded comment --- .../org/sleuthkit/autopsy/keywordsearch/AbstractFileChunk.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/AbstractFileChunk.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/AbstractFileChunk.java index 5fc1cd9330..dcb81eafd0 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/AbstractFileChunk.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/AbstractFileChunk.java @@ -56,7 +56,7 @@ class AbstractFileChunk { public boolean index(Ingester ingester, byte[] content, long contentSize, Charset indexCharset) throws IngesterException { byte[] saitizedContent = sanitize(content); - ByteContentStream bcs = new ByteContentStream(saitizedContent, contentSize, parent.getSourceFile(), indexCharset); //Charset.forName("UTF-8")); + ByteContentStream bcs = new ByteContentStream(saitizedContent, contentSize, parent.getSourceFile(), indexCharset); try { ingester.ingest(this, bcs, content.length); } catch (Exception ingEx) {