Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Fixes #4853: remove unexpected 0 #9

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils/src/main/scala/com/normation/utils/XmlUtils.scala
Expand Up @@ -78,7 +78,7 @@ object XmlUtils {
doc <- try {
Full(XML.load(is))
} catch {
case e: SAXParseException =>0
case e: SAXParseException =>
Failure(s"Unexpected issue with the XML file ${name}: ${e.getMessage}", Full(e), Empty)
case e: java.net.MalformedURLException =>
Failure("XML file not found: " + name, Full(e), Empty)
Expand Down