[ 
https://issues.apache.org/jira/browse/CSV-271?focusedWorklogId=618457&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-618457
 ]

ASF GitHub Bot logged work on CSV-271:
--------------------------------------

                Author: ASF GitHub Bot
            Created on: 04/Jul/21 21:37
            Start Date: 04/Jul/21 21:37
    Worklog Time Spent: 10m 
      Work Description: garydgregory commented on pull request #157:
URL: https://github.com/apache/commons-csv/pull/157#issuecomment-873667108


   https://issues.apache.org/jira/browse/CSV-271


-- 
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: 618457)
    Time Spent: 1h  (was: 50m)

> 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: 1h
>  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)

Reply via email to