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

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

                Author: ASF GitHub Bot
            Created on: 04/Jul/21 16:57
            Start Date: 04/Jul/21 16:57
    Worklog Time Spent: 10m 
      Work Description: coveralls edited a comment on pull request #157:
URL: https://github.com/apache/commons-csv/pull/157#issuecomment-873622445


   
   [![Coverage 
Status](https://coveralls.io/builds/41102207/badge)](https://coveralls.io/builds/41102207)
   
   Coverage decreased (-0.4%) to 98.053% when pulling 
**53189e9f220f67edcfd91a9bbfde734558efa933 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: 618441)
    Time Spent: 40m  (was: 0.5h)

> 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: 40m
>  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