Skip to content

Commit 11783f6

Browse files
committed
Also make constructor public
1 parent 923b5ce commit 11783f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/org/jruby/util/io/SeekableByteChannelImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public final class SeekableByteChannelImpl extends AbstractInterruptibleChannel
3434

3535
private int truncatedBy = 0;
3636

37-
SeekableByteChannelImpl(ByteArrayInputStream in) {
37+
public SeekableByteChannelImpl(ByteArrayInputStream in) {
3838
this.in = in;
3939
this.mark = mark(in);
4040
this.count = count(in);

0 commit comments

Comments
 (0)