Skip to content

Commit a02c526

Browse files
committed
Javadoc
1 parent 0bd02ae commit a02c526

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static Builder builder() {
153153
* Creates a new byte array input stream.
154154
*
155155
* @param data the buffer
156-
* @deprecated Use {@link #builder()}.
156+
* @deprecated Use {@link #builder()} and {@link Builder#get()}.
157157
*/
158158
@Deprecated
159159
public UnsynchronizedByteArrayInputStream(final byte[] data) {
@@ -170,7 +170,7 @@ public UnsynchronizedByteArrayInputStream(final byte[] data) {
170170
* @param offset the offset into the buffer
171171
*
172172
* @throws IllegalArgumentException if the offset is less than zero
173-
* @deprecated Use {@link #builder()}.
173+
* @deprecated Use {@link #builder()} and {@link Builder#get()}.
174174
*/
175175
@Deprecated
176176
public UnsynchronizedByteArrayInputStream(final byte[] data, final int offset) {
@@ -192,7 +192,7 @@ public UnsynchronizedByteArrayInputStream(final byte[] data, final int offset) {
192192
* @param length the length of the buffer
193193
*
194194
* @throws IllegalArgumentException if the offset or length less than zero
195-
* @deprecated Use {@link #builder()}.
195+
* @deprecated Use {@link #builder()} and {@link Builder#get()}.
196196
*/
197197
@Deprecated
198198
public UnsynchronizedByteArrayInputStream(final byte[] data, final int offset, final int length) {

0 commit comments

Comments
 (0)