2004-05-12 Dick Porter <dick@ximian.com>
authorDick Porter <dick@acm.org>
Wed, 12 May 2004 19:34:24 +0000 (19:34 -0000)
committerDick Porter <dick@acm.org>
Wed, 12 May 2004 19:34:24 +0000 (19:34 -0000)
* Uri.cs: Reduce(string) is not in the public API.

svn path=/trunk/mcs/; revision=27190

mcs/class/System/System/ChangeLog
mcs/class/System/System/Uri.cs

index 23bc5a4a3ffa64533a2f66b49397e8f1a067e858..ecc0d2b68ba9eca92515adcdc104efbba9c974e0 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-12  Dick Porter  <dick@ximian.com>
+
+       * Uri.cs: Reduce(string) is not in the public API.
+
 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * UriBuilder.cs: ignore empty Query. Fixes bug #57082.
index c5b751c63e484416407f2ebb68dde32d1ba12551..02bb6c86e6496c6e24d6e1ea6aac46b44bccdee5 100755 (executable)
@@ -933,7 +933,7 @@ namespace System
                        path = Reduce (path);
                }
 
-               public static string Reduce (string path)
+               private static string Reduce (string path)
                {
                        path = path.Replace ('\\','/');
                        string [] parts = path.Split ('/');