Skip to content

Commit fafacd1

Browse files
committed
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
1 parent 323b7ae commit fafacd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void printComment(String comment) throws IOException {
127127
}
128128

129129

130-
public void print(char[] value, int offset, int len, boolean checkForEscape) throws IOException {
130+
private void print(char[] value, int offset, int len, boolean checkForEscape) throws IOException {
131131
if (!checkForEscape) {
132132
printSep();
133133
out.write(value, offset, len);

0 commit comments

Comments
 (0)