remove uneeded comment

This commit is contained in:
momo 2015-10-08 10:49:20 -04:00
parent a024152259
commit eda8e09184

View File

@ -56,7 +56,7 @@ class AbstractFileChunk {
public boolean index(Ingester ingester, byte[] content, long contentSize, Charset indexCharset) throws IngesterException { public boolean index(Ingester ingester, byte[] content, long contentSize, Charset indexCharset) throws IngesterException {
byte[] saitizedContent = sanitize(content); 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 { try {
ingester.ingest(this, bcs, content.length); ingester.ingest(this, bcs, content.length);
} catch (Exception ingEx) { } catch (Exception ingEx) {