You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2017/03/10 20:19:14 UTC

svn commit: r1786433 - /chemistry/portcmis/trunk/PortCMIS/binding/Url.cs

Author: fmui
Date: Fri Mar 10 20:19:14 2017
New Revision: 1786433

URL: http://svn.apache.org/viewvc?rev=1786433&view=rev
Log:
CMIS-1018: fixed number formatting

Modified:
    chemistry/portcmis/trunk/PortCMIS/binding/Url.cs

Modified: chemistry/portcmis/trunk/PortCMIS/binding/Url.cs
URL: http://svn.apache.org/viewvc/chemistry/portcmis/trunk/PortCMIS/binding/Url.cs?rev=1786433&r1=1786432&r2=1786433&view=diff
==============================================================================
--- chemistry/portcmis/trunk/PortCMIS/binding/Url.cs (original)
+++ chemistry/portcmis/trunk/PortCMIS/binding/Url.cs Fri Mar 10 20:19:14 2017
@@ -162,7 +162,7 @@ namespace PortCMIS.Binding
             }
             else if (value is BigInteger)
             {
-                return ((BigInteger)value).ToString("#", CultureInfo.InvariantCulture);
+                return ((BigInteger)value).ToString("0", CultureInfo.InvariantCulture);
             }
 
             return value.ToString();