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:
Emmanuel Bourg 2012-03-05 17:30:44 +00:00
parent 323b7aedae
commit fafacd179d
1 changed files with 1 additions and 1 deletions

View File

@ -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);