Remove error suppression code from IncrementalIndexAdapter.

This commit is contained in:
Gian Merlino 2016-03-28 18:40:27 -07:00
parent 7fe277e6da
commit c7ff0d698e
1 changed files with 1 additions and 6 deletions

View File

@ -134,12 +134,7 @@ public class IncrementalIndexAdapter implements IndexableAdapter
if (bitmapIndexes[dimIdx] == null) {
bitmapIndexes[dimIdx] = bitmapFactory.makeEmptyMutableBitmap();
}
try {
bitmapIndexes[dimIdx].add(rowNum);
}
catch (Exception e) {
log.info(e.toString());
}
bitmapIndexes[dimIdx].add(rowNum);
}
}