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 25, 2024
1 parent bbbbea7 commit 54be5fa
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 54be5fa

Please sign in to comment.