Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
sadikovi committed Mar 14, 2016
1 parent c9e07c9 commit a28ac51
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ public long skip(long n) throws IOException {
// the offset.
if (isOffsetActive) {
isOffsetActive = false;
n = n - 1;
return super.skip(n) + 1;
return super.skip(n - 1) + 1;
} else {
return super.skip(n);
}
Expand Down

0 comments on commit a28ac51

Please sign in to comment.