You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/changes/changes.xml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,14 +63,17 @@ The <action> type attribute can be add,update,fix,remove.
63
63
<actiontype="fix"dev="ggregory"due-to="Martin Wiesner">Fix typos in Javadoc of FileUtils and related test classes #833.</action>
64
64
<actiontype="fix"dev="ggregory"due-to="Daniel Vega, Gary Gregory"issue="IO-887">WriterOutputStream from a builder fails on malformed or unmappable input bytes.</action>
65
65
<actiontype="fix"dev="ggregory"due-to="Gary Gregory">BoundedReader now extends ProxyReader.</action>
66
+
<actiontype="fix"dev="ggregory"due-to="Gary Gregory">AbstractStreamBuilder.setOpenOptions(OpenOption...) now makes a defensive copy of its input array.</action>
66
67
<actiontype="fix"dev="ggregory"due-to="Peter De Maeyer, Gary Gregory"issue="IO-885">Path visits follow links #832.</action>
67
68
<!-- ADD -->
68
69
<actiontype="add"dev="ggregory"due-to="Gary Gregory, Piotr P. Karwasz">Add and use IOUtils.closeQuietlySuppress(Closeable, Throwable) #818.</action>
<actiontype="add"dev="ggregory"due-to="Konrad Windszus, Gary Gregory, Makarand Hinge"issue="IO-883">ByteArraySeekableByteChannel should optionally configure a read-only channel.</action>
75
+
<actiontype="add"dev="ggregory"due-to="Gary Gregory"issue="IO-883">Add ByteArraySeekableByteChannel.Builder and builder().</action>
* A {@link SeekableByteChannel} implementation backed by a byte array.
@@ -38,13 +42,65 @@
38
42
* and it's not possible to {@link #position(long) set the position} or {@link #truncate(long) truncate} to a value bigger than that. The raw internal buffer is
39
43
* accessed via {@link ByteArraySeekableByteChannel#array()}.
40
44
* </p>
45
+
* <p>
46
+
* Building a read-only channel from an existing byte array is supported with:
0 commit comments