You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/java/org/apache/commons/csv/CSVPrinterTest.java
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -157,13 +157,17 @@ private void doRandom(final CSVFormat format, final int iter) throws Exception {
157
157
}
158
158
159
159
/**
160
-
* Converts an input CSV array into expected output values, including NULLs. NULL strings are converted to null values because the parser will convert
161
-
* these strings to null.
160
+
* Converts an input CSV array into expected output values, including NULLs. A value equal to the null string is converted to null only when the printer
161
+
* writes that value unchanged; when the printer escapes or quotes it, the parser reads it back as the value it is.
0 commit comments