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
commit 0cf4f113265a30feeaad98bb98ee6abc5181ee97 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jun 6 09:22:58 2025 -0400 Sort members --- .../java/org/apache/commons/csv/CSVPrinter.java | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java b/src/main/java/org/apache/commons/csv/CSVPrinter.java index 68d8d40e..59948557 100644 --- a/src/main/java/org/apache/commons/csv/CSVPrinter.java +++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java @@ -208,19 +208,6 @@ public final class CSVPrinter implements Flushable, Closeable { } } - /** - * Prints the string as the next value on the line. The value will be escaped or encapsulated as needed. - * - * @param value - * value to be output. - * @throws IOException - * If an I/O error occurs - */ - private void printRaw(final Object value) throws IOException { - format.print(value, appendable, newRecord); - newRecord = false; - } - /** * Prints a comment on a new line among the delimiter-separated values. * @@ -313,6 +300,19 @@ public final class CSVPrinter implements Flushable, Closeable { } } + /** + * Prints the string as the next value on the line. The value will be escaped or encapsulated as needed. + * + * @param value + * value to be output. + * @throws IOException + * If an I/O error occurs + */ + private void printRaw(final Object value) throws IOException { + format.print(value, appendable, newRecord); + newRecord = false; + } + /** * Prints the given values as a single record of delimiter-separated values followed by the record separator. *