This commit is contained in:
Gary Gregory 2024-06-18 09:14:46 -04:00
parent 47faf72c23
commit defb756331
1 changed files with 4 additions and 4 deletions

View File

@ -1506,8 +1506,8 @@ public class CSVPrinterTest {
* Test to target the use of {@link IOUtils#copy(java.io.Reader, Appendable)} which directly buffers the value from the Reader to the Appendable. * Test to target the use of {@link IOUtils#copy(java.io.Reader, Appendable)} which directly buffers the value from the Reader to the Appendable.
* *
* <p> * <p>
* Requires the format to have no quote or escape character, value to be a {@link java.io.Reader Reader} and the output <i>MUST NOT</i> be a * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <i>MUST NOT</i> be a
* {@link java.io.Writer Writer} but some other Appendable. * {@link Writer Writer} but some other Appendable.
* </p> * </p>
* *
* @throws IOException Not expected to happen * @throws IOException Not expected to happen
@ -1527,8 +1527,8 @@ public class CSVPrinterTest {
* Test to target the use of {@link IOUtils#copyLarge(java.io.Reader, Writer)} which directly buffers the value from the Reader to the Writer. * Test to target the use of {@link IOUtils#copyLarge(java.io.Reader, Writer)} which directly buffers the value from the Reader to the Writer.
* *
* <p> * <p>
* Requires the format to have no quote or escape character, value to be a {@link java.io.Reader Reader} and the output <i>MUST</i> be a * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <i>MUST</i> be a
* {@link java.io.Writer Writer}. * {@link Writer Writer}.
* </p> * </p>
* *
* @throws IOException Not expected to happen * @throws IOException Not expected to happen