File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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 *
You can’t perform that action at this time.
0 commit comments