This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push: new defb7563 Javadoc defb7563 is described below commit defb7563317e71bbbe14da7678f631b1c66fb957 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 18 09:14:46 2024 -0400 Javadoc --- src/test/java/org/apache/commons/csv/CSVPrinterTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java index 55be57b0..d015312b 100644 --- a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java +++ b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java @@ -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. * * <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 - * {@link java.io.Writer Writer} but some other Appendable. + * 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 Writer Writer} but some other Appendable. * </p> * * @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. * * <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 - * {@link java.io.Writer Writer}. + * 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 Writer Writer}. * </p> * * @throws IOException Not expected to happen