@@ -191,10 +191,6 @@ public static void copy(
191191 copy (in , output );
192192 }
193193
194- // ----------------------------------------------------------------
195- // Reader -> Writer
196- // ----------------------------------------------------------------
197-
198194 /**
199195 * Copies and convert bytes from an {@code InputStream} to chars on a
200196 * {@code Writer}, using the specified encoding.
@@ -214,10 +210,6 @@ public static void copy(
214210 copy (in , output );
215211 }
216212
217- // ----------------------------------------------------------------
218- // InputStream -> Writer
219- // ----------------------------------------------------------------
220-
221213 /**
222214 * Serialize chars from a {@code Reader} to bytes on an
223215 * {@code OutputStream}, and flush the {@code OutputStream}.
@@ -263,11 +255,6 @@ public static void copy(
263255 out .flush ();
264256 }
265257
266-
267- // ----------------------------------------------------------------
268- // Reader -> OutputStream
269- // ----------------------------------------------------------------
270-
271258 /**
272259 * Copies chars from a {@code Reader} to a {@code Writer}.
273260 * @param input the {@code Reader} to read from
@@ -313,10 +300,6 @@ public static void copy(
313300 out .flush ();
314301 }
315302
316- // ----------------------------------------------------------------
317- // String -> OutputStream
318- // ----------------------------------------------------------------
319-
320303 /**
321304 * Serialize chars from a {@code String} to bytes on an
322305 * {@code OutputStream}, and
@@ -353,10 +336,6 @@ public static void copy(final String input, final Writer output)
353336 output .write (input );
354337 }
355338
356- // ----------------------------------------------------------------
357- // String -> Writer
358- // ----------------------------------------------------------------
359-
360339 /**
361340 * Instances should NOT be constructed in standard programming.
362341 */
0 commit comments