Re: [dom4j-dev] bug in clone()

2001-05-25 Thread James Strachan
Hi Theo > I tried to find a link to the email I sent to the dom4j-dev list about this > fix but geocrawler is down again. I must get around to finding a better > archiver, its always down when you need it Aha. I've just noticed that mail-archive.com is working now... The mail link I was looking

Re: [dom4j-dev] bug in clone()

2001-05-25 Thread James Strachan
> There is a little bug in cloning, attributes are not cloned because of: > > org.dom4j.tree.AbstractElement.appendAttributes(Element element) > > for (Iterator i = attributeIterator(); i.hasNext(); ) // is wrong > for (Iterator i = element.attributeIterator(); i.hasNext(); ) // is right > > sam