Просмотр исходного кода

2004-11-08 Atsushi Enomoto <[email protected]>

	* XmlSchemaSet.cs : use NameTable when creating XmlTextReader.

svn path=/trunk/mcs/; revision=35809
Atsushi Eno 21 лет назад
Родитель
Сommit
288fb5c552

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

@@ -1,3 +1,7 @@
+2004-11-08  Atsushi Enomoto <[email protected]>
+
+	* XmlSchemaSet.cs : use NameTable when creating XmlTextReader.
+
 2004-11-05  Atsushi Enomoto <[email protected]>
 
 	* XmlSchemaSet.cs : reduced extraneous XmlSchemaObjectTable creation.

+ 1 - 1
mcs/class/System.XML/System.Xml.Schema/XmlSchemaSet.cs

@@ -139,7 +139,7 @@ namespace System.Xml.Schema
 			targetNamespace = GetSafeNs (targetNamespace);
 			XmlTextReader r = null;
 			try {
-				r = new XmlTextReader (url);
+				r = new XmlTextReader (url, nameTable);
 				return Add (targetNamespace, r);
 			} finally {
 				if (r != null)