@@ -221,7 +221,7 @@ private static void checkIbmJdkWithBrokenUTF16(final Charset charset) {
221221 * characters. The output buffer will only be flushed when it overflows or when {@link #flush()} or {@link #close()} is called.
222222 *
223223 * @param writer the target {@link Writer}
224- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
224+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
225225 */
226226 @ Deprecated
227227 public WriterOutputStream (final Writer writer ) {
@@ -234,7 +234,7 @@ public WriterOutputStream(final Writer writer) {
234234 *
235235 * @param writer the target {@link Writer}
236236 * @param charset the charset encoding
237- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
237+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
238238 */
239239 @ Deprecated
240240 public WriterOutputStream (final Writer writer , final Charset charset ) {
@@ -250,7 +250,7 @@ public WriterOutputStream(final Writer writer, final Charset charset) {
250250 * @param writeImmediately If {@code true} the output buffer will be flushed after each write operation, i.e. all available data will be written to the
251251 * underlying {@link Writer} immediately. If {@code false}, the output buffer will only be flushed when it overflows or when
252252 * {@link #flush()} or {@link #close()} is called.
253- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
253+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
254254 */
255255 @ Deprecated
256256 public WriterOutputStream (final Writer writer , final Charset charset , final int bufferSize , final boolean writeImmediately ) {
@@ -272,7 +272,7 @@ public WriterOutputStream(final Writer writer, final Charset charset, final int
272272 * @param writer the target {@link Writer}
273273 * @param decoder the charset decoder
274274 * @since 2.1
275- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
275+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
276276 */
277277 @ Deprecated
278278 public WriterOutputStream (final Writer writer , final CharsetDecoder decoder ) {
@@ -289,7 +289,7 @@ public WriterOutputStream(final Writer writer, final CharsetDecoder decoder) {
289289 * underlying {@link Writer} immediately. If {@code false}, the output buffer will only be flushed when it overflows or when
290290 * {@link #flush()} or {@link #close()} is called.
291291 * @since 2.1
292- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
292+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
293293 */
294294 @ Deprecated
295295 public WriterOutputStream (final Writer writer , final CharsetDecoder decoder , final int bufferSize , final boolean writeImmediately ) {
@@ -306,7 +306,7 @@ public WriterOutputStream(final Writer writer, final CharsetDecoder decoder, fin
306306 *
307307 * @param writer the target {@link Writer}
308308 * @param charsetName the name of the charset encoding
309- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
309+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
310310 */
311311 @ Deprecated
312312 public WriterOutputStream (final Writer writer , final String charsetName ) {
@@ -322,7 +322,7 @@ public WriterOutputStream(final Writer writer, final String charsetName) {
322322 * @param writeImmediately If {@code true} the output buffer will be flushed after each write operation, i.e. all available data will be written to the
323323 * underlying {@link Writer} immediately. If {@code false}, the output buffer will only be flushed when it overflows or when
324324 * {@link #flush()} or {@link #close()} is called.
325- * @deprecated Use {@link #builder()} and {@link Builder#get()} instead
325+ * @deprecated Use {@link #builder()} and {@link Builder#get()}
326326 */
327327 @ Deprecated
328328 public WriterOutputStream (final Writer writer , final String charsetName , final int bufferSize , final boolean writeImmediately ) {
0 commit comments