Skip to content

Commit 2655f26

Browse files
committed
Javadoc
1 parent 570c796 commit 2655f26

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static Builder builder() {
100100
*
101101
* @param file The file to stream.
102102
* @throws IOException If an I/O error occurs
103-
* @deprecated Use {@link #builder()}
103+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
104104
*/
105105
@Deprecated
106106
public BufferedFileChannelInputStream(final File file) throws IOException {
@@ -113,7 +113,7 @@ public BufferedFileChannelInputStream(final File file) throws IOException {
113113
* @param file The file to stream.
114114
* @param bufferSize buffer size.
115115
* @throws IOException If an I/O error occurs
116-
* @deprecated Use {@link #builder()}
116+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
117117
*/
118118
@Deprecated
119119
public BufferedFileChannelInputStream(final File file, final int bufferSize) throws IOException {
@@ -125,7 +125,7 @@ public BufferedFileChannelInputStream(final File file, final int bufferSize) thr
125125
*
126126
* @param path The path to stream.
127127
* @throws IOException If an I/O error occurs
128-
* @deprecated Use {@link #builder()}
128+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
129129
*/
130130
@Deprecated
131131
public BufferedFileChannelInputStream(final Path path) throws IOException {
@@ -138,7 +138,7 @@ public BufferedFileChannelInputStream(final Path path) throws IOException {
138138
* @param path The path to stream.
139139
* @param bufferSize buffer size.
140140
* @throws IOException If an I/O error occurs
141-
* @deprecated Use {@link #builder()}
141+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
142142
*/
143143
@Deprecated
144144
public BufferedFileChannelInputStream(final Path path, final int bufferSize) throws IOException {

0 commit comments

Comments
 (0)