Skip to content

Commit ed61330

Browse files
committed
Javadoc
1 parent 940a652 commit ed61330

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public static Builder builder() {
193193
*
194194
* @param delegate
195195
* the InputStream to delegate to
196-
* @deprecated Use {@link #builder()}
196+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
197197
*/
198198
@Deprecated
199199
public BOMInputStream(final InputStream delegate) {
@@ -207,7 +207,7 @@ public BOMInputStream(final InputStream delegate) {
207207
* the InputStream to delegate to
208208
* @param include
209209
* true to include the UTF-8 BOM or false to exclude it
210-
* @deprecated Use {@link #builder()}
210+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
211211
*/
212212
@Deprecated
213213
public BOMInputStream(final InputStream delegate, final boolean include) {
@@ -223,7 +223,7 @@ public BOMInputStream(final InputStream delegate, final boolean include) {
223223
* true to include the specified BOMs or false to exclude them
224224
* @param boms
225225
* The BOMs to detect and optionally exclude
226-
* @deprecated Use {@link #builder()}
226+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
227227
*/
228228
@Deprecated
229229
public BOMInputStream(final InputStream delegate, final boolean include, final ByteOrderMark... boms) {
@@ -246,7 +246,7 @@ public BOMInputStream(final InputStream delegate, final boolean include, final B
246246
* the InputStream to delegate to
247247
* @param boms
248248
* The BOMs to detect and exclude
249-
* @deprecated Use {@link #builder()}
249+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
250250
*/
251251
@Deprecated
252252
public BOMInputStream(final InputStream delegate, final ByteOrderMark... boms) {

0 commit comments

Comments
 (0)