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

Commit

Permalink
Merge pull request #9 from fanf/bug_4853/remove_warning_unused_0
Browse files Browse the repository at this point in the history
Fixes #4853: remove unexpected 0
  • Loading branch information
ncharles committed May 15, 2014
2 parents 91f53c3 + d89affa commit 8241e5f
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 8241e5f

Please sign in to comment.