Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Unify BufferedFileStreamStrategy seeking
  • Loading branch information
pedrobsaila committed Nov 29, 2022
commit 2a59639f8d43f0d790a2a7132a79492284d6e323
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,7 @@ public override long Position
}
set
{
if (_writePos > 0)
{
FlushWrite();
}

_readPos = 0;
_readLen = 0;

_strategy.Position = value;
Seek(value, SeekOrigin.Begin);
}
}

Expand Down