Skip to content

Commit 0cf4f11

Browse files
committed
Sort members
1 parent 7a264a2 commit 0cf4f11

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/main/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -208,19 +208,6 @@ public void print(final Object value) throws IOException {
208208
}
209209
}
210210

211-
/**
212-
* Prints the string as the next value on the line. The value will be escaped or encapsulated as needed.
213-
*
214-
* @param value
215-
* value to be output.
216-
* @throws IOException
217-
* If an I/O error occurs
218-
*/
219-
private void printRaw(final Object value) throws IOException {
220-
format.print(value, appendable, newRecord);
221-
newRecord = false;
222-
}
223-
224211
/**
225212
* Prints a comment on a new line among the delimiter-separated values.
226213
*
@@ -313,6 +300,19 @@ public void println() throws IOException {
313300
}
314301
}
315302

303+
/**
304+
* Prints the string as the next value on the line. The value will be escaped or encapsulated as needed.
305+
*
306+
* @param value
307+
* value to be output.
308+
* @throws IOException
309+
* If an I/O error occurs
310+
*/
311+
private void printRaw(final Object value) throws IOException {
312+
format.print(value, appendable, newRecord);
313+
newRecord = false;
314+
}
315+
316316
/**
317317
* Prints the given values as a single record of delimiter-separated values followed by the record separator.
318318
*

0 commit comments

Comments
 (0)