Description
The following code in CSVPrinter#print(String) could use a break:
for (int i = 0; i < value.length(); i++) {
c = value.charAt;
if (c == '"' || c == this.strategy.getDelimiter() || c == '\n' || c == '\r')
}
The following code in CSVPrinter#print(String) could use a break:
for (int i = 0; i < value.length(); i++) {
c = value.charAt;
if (c == '"' || c == this.strategy.getDelimiter() || c == '\n' || c == '\r')
}