}
}
protected Payload doSlice(final FSDataInputStream inputStream,
final long offset, final long length) {
return new InputStreamSupplierPayload(new InputSupplier<InputStream>() {
public InputStream getInput() throws IOException {
if (offset > 0) {
try {
inputStream.seek(offset);
} catch (IOException e) {