tweaked validation of xml to keep Gump quiet

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1074920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2011-02-26 20:52:50 +00:00
parent 7e3371bb15
commit c5501130eb

View File

@ -134,7 +134,7 @@ public class XSSFExportToXml implements Comparator<String>{
if (isNamespaceDeclared()) {
root=doc.createElementNS(getNamespace(),rootElement);
} else {
root=doc.createElement(rootElement);
root = doc.createElementNS("", rootElement);
}
doc.appendChild(root);
@ -339,7 +339,7 @@ public class XSSFExportToXml implements Comparator<String>{
NamedNodeMap attributesMap = currentNode.getAttributes();
Node attribute = attributesMap.getNamedItem(attributeName);
if (attribute==null) {
attribute = doc.createAttribute(attributeName);
attribute = doc.createAttributeNS("", attributeName);
attributesMap.setNamedItem(attribute);
}
return attribute;
@ -350,7 +350,7 @@ public class XSSFExportToXml implements Comparator<String>{
if (isNamespaceDeclared()) {
selectedNode =doc.createElementNS(getNamespace(),axisName);
} else {
selectedNode =doc.createElement(axisName);
selectedNode = doc.createElementNS("", axisName);
}
currentNode.appendChild(selectedNode);
return selectedNode;