[
https://issues.apache.org/jira/browse/CSV-271?focusedWorklogId=618438&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-618438
]
ASF GitHub Bot logged work on CSV-271:
--------------------------------------
Author: ASF GitHub Bot
Created on: 04/Jul/21 16:35
Start Date: 04/Jul/21 16:35
Worklog Time Spent: 10m
Work Description: coveralls commented on pull request #157:
URL: https://github.com/apache/commons-csv/pull/157#issuecomment-873622445
[](https://coveralls.io/builds/41102115)
Coverage decreased (-0.4%) to 98.053% when pulling
**cbe96a488b94891076d3082493f07bf06f04c5a7 on
amarlearning:CSV-271-missing-separator** into
**dc5d034a47aa1f69612f20ec646b7a2f0050279e on apache:master**.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 618438)
Time Spent: 20m (was: 10m)
> Missing separator with "print(object)" followed by "printRecord(Object[])"
> --------------------------------------------------------------------------
>
> Key: CSV-271
> URL: https://issues.apache.org/jira/browse/CSV-271
> Project: Commons CSV
> Issue Type: Bug
> Components: Printer
> Affects Versions: 1.8
> Reporter: Michael Wyraz
> Priority: Major
> Time Spent: 20m
> Remaining Estimate: 0h
>
> Hello,
> the following code produces CSV with a missing separator:
> {code:java}
> CSVPrinter csv=new CSVPrinter(new
> OutputStreamWriter(System.out,StandardCharsets.UTF_8),CSVFormat.DEFAULT);
> csv.print("a");
> csv.printRecord("b","c");{code}
> This produces "ab,c".
> The corresponding function that takes a list, works properly:
> {code:java}
> csv.print("a");
> csv.printRecord(Arrays.asList("b","c"));{code}
> Produces "a,b,c" as expected
--
This message was sent by Atlassian Jira
(v8.3.4#803005)