Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-09-22 18:35:04 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-09-22 18:35:04 +0400
commit279b42114e9cbd35831ad99c840b22b48b59edec (patch)
treeb1ac3b653ab1fdcc3c1516ce6f580e6871880e64 /mcs/class/System.XML
parent149657947f6502061a002ce260c39233b79882fc (diff)
2002-09-22 Nick Drochak <ndrochak@gol.com>
* Parser.cs: Remove extraneous "using" that was stopping the build. svn path=/trunk/mcs/; revision=7720
Diffstat (limited to 'mcs/class/System.XML')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/ChangeLog4
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/Parser.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
index 44b634925b7..24012bc3264 100644
--- a/mcs/class/System.XML/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.XPath/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-22 Nick Drochak <ndrochak@gol.com>
+
+ * Parser.cs: Remove extraneous "using" that was stopping the build.
+
2002-09-21 Piers Haken <piersh@friskit.com>
* XPathException: implementation
diff --git a/mcs/class/System.XML/System.Xml.XPath/Parser.cs b/mcs/class/System.XML/System.Xml.XPath/Parser.cs
index def72285d0c..6914e278dc9 100644
--- a/mcs/class/System.XML/System.Xml.XPath/Parser.cs
+++ b/mcs/class/System.XML/System.Xml.XPath/Parser.cs
@@ -12,7 +12,7 @@
using System;
using System.Xml.XPath;
-using Test.Xml.XPath;
+//using Test.Xml.XPath;
namespace Mono.Xml.XPath
{