Bugs item #1605068, was opened at 2006-11-29 00:06
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=116035&aid=1605068&group_id=16035

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug of AbstractElement.addElement(String name) 

Initial Comment:
AbstractElement.addElement(String name) 
line: 846

if (index > 0) {
    ...
    namespace = getNamespaceForPrefix(prefix);
    ...
} else {
    namespace = getNamespaceForPrefix("");
}

should change to 

if (index > 0) {
    ...
    namespace = getNamespaceForPrefix(prefix);
    ...
} else {
    namespace = Namespace.NO_NAMESPACE;
}

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=116035&aid=1605068&group_id=16035

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
dom4j-dev mailing list
dom4j-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dom4j-dev

Reply via email to