Grzegorz B. Prokopski wrote:
> Before anything else, could we first see the patch that solves this
> problem? Maybe it's just a few-liner...
Hi gadek,
This particular problem was solved by
Index: gnu/xml/dom/DomNamedNodeMap.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/xml/dom/DomNamedNodeMap.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnu/xml/dom/DomNamedNodeMap.java 10 Feb 2005 17:21:25 -0000 1.2
+++ gnu/xml/dom/DomNamedNodeMap.java 30 Jun 2005 22:09:07 -0000 1.3
@@ -206,6 +206,10 @@
if (ns)
{
String tln = ctx.getLocalName();
+ if (tln == null)
+ {
+ tln = ctx.getNodeName();
+ }
if (tln.equals(localName))
{
String tu = ctx.getNamespaceURI();
... but there are a whole load of related changes that I've been applying
over the last couple of days.
--
Chris Burdess
_______________________________________________
Classpath mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/classpath