Merge pull request #2754 from gianm/i-dont-get-it

Remove error suppression code from IncrementalIndexAdapter.
This commit is contained in:
Fangjin Yang 2016-03-28 19:29:53 -07:00
commit e023df2b92
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);
}
}