You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@chemistry.apache.org by "Florian Müller (JIRA)" <ji...@apache.org> on 2017/03/23 16:23:41 UTC

[jira] [Resolved] (CMIS-1020) [Duplicate error] Converting BigInteger to string when 0 yields string.Empty

     [ https://issues.apache.org/jira/browse/CMIS-1020?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Florian Müller resolved CMIS-1020.
----------------------------------
    Resolution: Fixed
      Assignee: Florian Müller

Thanks for the report!

> [Duplicate error] Converting BigInteger to string when 0 yields string.Empty
> ----------------------------------------------------------------------------
>
>                 Key: CMIS-1020
>                 URL: https://issues.apache.org/jira/browse/CMIS-1020
>             Project: Chemistry
>          Issue Type: Bug
>          Components: portcmis
>    Affects Versions: PortCMIS 0.2.0
>            Reporter: Gabriele Fusacchia
>            Assignee: Florian Müller
>
> this is the same bug reported in:
> https://issues.apache.org/jira/browse/CMIS-1018 
> appearing in another file, BrowserBinding.cs, line 520
> Wrong: 
> return ((BigInteger)value).ToString("#", CultureInfo.InvariantCulture);
> Corrected:
> return ((BigInteger)value).ToString("0", CultureInfo.InvariantCulture);



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)