Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
FSDataInputStreamWrapper
private void setStreamOptions(FSDataInputStream in) { try { this.stream.setDropBehind(dropBehind); } catch (Exception e) { // Skipped. } if (readahead >= 0) { try { this.stream.setReadahead(readahead); } catch (Exception e) { // Skipped. } } }