Skip to content

Commit

Permalink
2008-12-19 Atsushi Enomoto <atsushi@ximian.com>
Browse files Browse the repository at this point in the history
	* XmlNamespaceManager.cs : namespace lookup failed for non-atomic
	  string in 1.1 profile. Fixed 1.0 part of #379139.


svn path=/trunk/mcs/; revision=121834
  • Loading branch information
atsushieno committed Dec 19, 2008
1 parent f50d8f7 commit 27e2330
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions mcs/class/System.XML/System.Xml/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2008-12-19 Atsushi Enomoto <atsushi@ximian.com>

* XmlNamespaceManager.cs : namespace lookup failed for non-atomic
string in 1.1 profile. Fixed 1.0 part of #379139.

2008-12-18 Atsushi Enomoto <atsushi@ximian.com>

* DTDValidatingReader.cs : remove unused file.
Expand Down
4 changes: 0 additions & 4 deletions mcs/class/System.XML/System.Xml/XmlNamespaceManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,7 @@ internal virtual bool HasNamespace (string prefix, bool atomizedNames)

public virtual string LookupNamespace (string prefix)
{
#if NET_2_0
return LookupNamespace (prefix, false);
#else
return LookupNamespace (prefix, true);
#endif
}

internal virtual string LookupNamespace (string prefix, bool atomizedNames)
Expand Down

0 comments on commit 27e2330

Please sign in to comment.