2004-03-04 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Thu, 4 Mar 2004 16:52:12 +0000 (16:52 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Thu, 4 Mar 2004 16:52:12 +0000 (16:52 -0000)
* XmlImplementation.cs : fixity fix (I need NUnit runnable ;)

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

mcs/class/System.XML/System.Xml/ChangeLog
mcs/class/System.XML/System.Xml/XmlDocument.cs

index 233e0627c2419993e45c34389cf00e681e81c9f4..8ba44b3c03db9d6c05aa5826d126efd74b832bb6 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-04  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XmlImplementation.cs : fixity fix (I need NUnit runnable ;)
+
 2004-03-04  Atsushi Enomoto <atsushi@ximian.com>
 
        * XmlImplementation.cs : forgot to commit (renaming internal case)
index 807d6c1d31467db2646ed1b99a465675244cd2f3..6406226ddc7a7831613f14440d04e4dad7fee315 100644 (file)
@@ -65,7 +65,7 @@ namespace System.Xml
                        else
                                implementation = impl;
 
-                       nameTable = (nt != null) ? nt : impl.InternalNameTable;
+                       nameTable = (nt != null) ? nt : implementation.InternalNameTable;
                        AddDefaultNameTableKeys ();
                        resolver = new XmlUrlResolver ();
                }