mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-07 18:49:24 +00:00
Made the protected fields in CSVPrinter private
git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1199775 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
be3cb017eb
commit
d90fa381c4
@ -25,18 +25,15 @@ import java.io.Writer;
|
|||||||
*/
|
*/
|
||||||
public class CSVPrinter {
|
public class CSVPrinter {
|
||||||
|
|
||||||
/**
|
/** The place that the values get written. */
|
||||||
* The place that the values get written.
|
private final Writer out;
|
||||||
*/
|
private final CSVStrategy strategy;
|
||||||
protected final Writer out;
|
|
||||||
protected final CSVStrategy strategy;
|
|
||||||
|
|
||||||
/**
|
/** True if we just began a new line. */
|
||||||
* True if we just began a new line.
|
private boolean newLine = true;
|
||||||
*/
|
|
||||||
protected boolean newLine = true;
|
|
||||||
|
|
||||||
protected char[] buf = new char[0]; // temporary buffer
|
/** Temporary buffer */
|
||||||
|
private char[] buf = new char[0];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a printer that will print values to the given
|
* Create a printer that will print values to the given
|
||||||
|
Loading…
x
Reference in New Issue
Block a user