Skip to content

Commit

Permalink
fix(bytebuffer): init method visibility (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa committed Oct 26, 2022
1 parent 7b25515 commit f7f3455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/YData/NIO/ByteBufferInputStream+InputStream.swift
Expand Up @@ -5,7 +5,7 @@ public final class ByteBufferInputStream: InputStream {
private var byteBuffer: ByteBuffer
public override var streamStatus: Stream.Status { .open }

init(_ byteBuffer: ByteBuffer) {
public init(_ byteBuffer: ByteBuffer) {
self.byteBuffer = byteBuffer

super.init(data: Data())
Expand Down

0 comments on commit f7f3455

Please sign in to comment.