classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Eclipse broken with 0.16


From: Chris Burdess
Subject: Re: Eclipse broken with 0.16
Date: Sat, 2 Jul 2005 08:50:21 +0100
User-agent: Mutt/1.3.28i

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]