Made CSVPrinter.print(char[], int, int, boolean) private
git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1297138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
323b7aedae
commit
fafacd179d
|
@ -127,7 +127,7 @@ public class CSVPrinter {
|
|||
}
|
||||
|
||||
|
||||
public void print(char[] value, int offset, int len, boolean checkForEscape) throws IOException {
|
||||
private void print(char[] value, int offset, int len, boolean checkForEscape) throws IOException {
|
||||
if (!checkForEscape) {
|
||||
printSep();
|
||||
out.write(value, offset, len);
|
||||
|
|
Loading…
Reference in New Issue