Skip to content

Commit

Permalink
Remove leftover debug print
Browse files Browse the repository at this point in the history
Fixes #2607
  • Loading branch information
octylFractal committed Aug 21, 2024
1 parent bbbbea7 commit d2b655f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public long skip(long n) throws IOException {

public void seek(long n) throws IOException {
long diff = n - position;
System.err.println("Seek to " + n + " from position " + position + " using " + diff);

if (diff < 0) {
throw new IOException("Can't seek backwards");
Expand Down

0 comments on commit d2b655f

Please sign in to comment.