Skip to content
Snippets Groups Projects
Commit 62eb15af authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Style fixes

parent f1002e76
No related branches found
No related tags found
No related merge requests found
......@@ -256,9 +256,9 @@ object ConfigUtils extends Logging {
def any2list(any: Any): List[Any] = {
if (any == null) return null
any match {
case l: List[_] => l
case l: List[_] => l
case l: util.ArrayList[_] => l.toList
case _ => List(any)
case _ => List(any)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment