Author: fanningpj
Date: Sun Aug 28 16:22:32 2022
New Revision: 1903741
URL: http://svn.apache.org/viewvc?rev=1903741&view=rev
Log:
reuse code
Modified:
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
Modified:
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java?rev=1903741&r1=1903740&r2=1903741&view=diff
==============================================================================
---
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
(original)
+++
poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
Sun Aug 28 16:22:32 2022
@@ -41,6 +41,8 @@ import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
+import static org.apache.poi.xssf.usermodel.XSSFRelation.NS_SPREADSHEETML;
+
/**
* Table style names defined in the OOXML spec.
* The actual styling is defined in presetTableStyles.xml
@@ -424,7 +426,7 @@ public enum XSSFBuiltinTableStyle {
dxfsNode.insertBefore(dxfsNode.getOwnerDocument().createElement("dxf"),
dxfsNode.getFirstChild());
return "<?xml version=\"1.0\" encoding=\"UTF-8\"
standalone=\"yes\"?>\n" +
- "<styleSheet
xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" " +
+ "<styleSheet xmlns=\"" + NS_SPREADSHEETML + "\" " +
"xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" " +
"xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" " +
"xmlns:x16r2=\"http://schemas.microsoft.com/office/spreadsheetml/2015/02/main\"
" +
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]