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) {