Gabriele Fusacchia created CMIS-1020:
----------------------------------------
Summary: [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
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)