aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml/src/main
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-05-22 15:17:22 +0000
committerPJ Fanning <fanningpj@apache.org>2023-05-22 15:17:22 +0000
commit2712abf00ba8b99ec4b445ec619ceb3abb8bd8d3 (patch)
treef3e6076cf9ce52dbb03cbcd48d99895c448ee4d4 /poi-ooxml/src/main
parent4b8a7eb6cee7b7ec7c8fb3cb6e9bc203047ecf34 (diff)
downloadpoi-2712abf00ba8b99ec4b445ec619ceb3abb8bd8d3.tar.gz
poi-2712abf00ba8b99ec4b445ec619ceb3abb8bd8d3.zip
add content types for macrosheets
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1909993 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml/src/main')
-rw-r--r--poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRelation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRelation.java b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRelation.java
index 60f835e1ed..04ec265eaf 100644
--- a/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRelation.java
+++ b/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFRelation.java
@@ -286,13 +286,13 @@ public final class XSSFRelation extends POIXMLRelation {
);
public static final XSSFRelation MACRO_SHEET_BIN = new XSSFRelation(
- null,//TODO: figure out what this should be?
+ "application/vnd.ms-excel.macrosheet+xml",
"http://schemas.microsoft.com/office/2006/relationships/xlMacrosheet",
"/xl/macroSheets/sheet#.bin"
);
public static final XSSFRelation INTL_MACRO_SHEET_BIN = new XSSFRelation(
- null,//TODO: figure out what this should be?
+ "application/vnd.ms-excel.intlmacrosheet+xml",
"http://schemas.microsoft.com/office/2006/relationships/xlIntlMacrosheet",
"/xl/macroSheets/sheet#.bin"
);