Skip to content

Commit

Permalink
Merge pull request #67 from EventStore/sakno/fix-stream-visibility
Browse files Browse the repository at this point in the history
[KDB-521]: Fixed visibility of the property
  • Loading branch information
timothycoleman authored Dec 11, 2024
2 parents a1bb489 + 1c969e6 commit e53ee2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventStore.Plugins/Transforms/ChunkDataStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace EventStore.Plugins.Transforms;

public abstract class ChunkDataStream(Stream chunkFileStream) : Stream {
protected Stream ChunkFileStream => chunkFileStream;
public Stream ChunkFileStream => chunkFileStream;

public override int Read(Span<byte> buffer) => chunkFileStream.Read(buffer);

Expand Down

0 comments on commit e53ee2e

Please sign in to comment.