Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public static final ValidatingParser getValidatingParser() throws ParserConfigur
/**
* Get either an extended or non-extended validating parser instance.
*
* @return a validating parser instance
* @param isExtended whether to enable extended validation/conformance
* @return a validating parser instance
* @throws ParserConfigurationException
* @throws SAXException
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private final List<Message> validateOdfXmlDocument(final OdfPackage odfPackage,
this.results.put(xmlPath, validationResult);
} catch (IOException e) {
messageList.add(FACTORY.getError("CORE-3", Messages.parameterListInstance().add("message", e.getMessage()).add("xmlPath", xmlPath)));
} catch (SAXException |ParserConfigurationException e) {
} catch (SAXException | ParserConfigurationException e) {
messageList.add(FACTORY.getError("CORE-4", Messages.parameterListInstance().add("message", e.getMessage()).add("xmlPath", xmlPath)));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell office:value-type="string" calcext:value-type="string">
<text:p>Embeded object as icon</text:p>
<text:p>Embedded object as icon</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="ro2" table:number-rows-repeated="3">
Expand Down