[
https://issues.apache.org/jira/browse/CSV-271?focusedWorklogId=618437&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-618437
]
ASF GitHub Bot logged work on CSV-271:
--------------------------------------
Author: ASF GitHub Bot
Created on: 04/Jul/21 16:31
Start Date: 04/Jul/21 16:31
Worklog Time Spent: 10m
Work Description: amarlearning opened a new pull request #157:
URL: https://github.com/apache/commons-csv/pull/157
Ready for review
--
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: 618437)
Remaining Estimate: 0h
Time Spent: 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: 10m
> 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)