fix message compiler warning

This commit is contained in:
Thibault Duplessis 2018-02-11 16:04:01 -05:00
parent af2edbcd6f
commit d08d162d58

View file

@ -78,7 +78,7 @@ private[i18n] object Registry {
val xml = try {
XML.loadFile(file)
} catch {
case e => println(file); throw e;
case e: Exception => println(file); throw e;
}
def quote(msg: String) = s"""""\"$msg""\""""
val content = xml.child.collect {