Procházet zdrojové kódy

2004-03-04 Atsushi Enomoto <[email protected]>

	* XmlImplementation.cs : fixity fix (I need NUnit runnable ;)

svn path=/trunk/mcs/; revision=23694
Atsushi Eno před 22 roky
rodič
revize
3210914acc

+ 4 - 0
mcs/class/System.XML/System.Xml/ChangeLog

@@ -1,3 +1,7 @@
+2004-03-04  Atsushi Enomoto <[email protected]>
+
+	* XmlImplementation.cs : fixity fix (I need NUnit runnable ;)
+
 2004-03-04  Atsushi Enomoto <[email protected]>
 
 	* XmlImplementation.cs : forgot to commit (renaming internal case)

+ 1 - 1
mcs/class/System.XML/System.Xml/XmlDocument.cs

@@ -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 ();
 		}