aboutsummaryrefslogtreecommitdiff
path: root/stage2/Lib.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-22 10:11:46 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-24 11:32:09 -0400
commit758611576a4f6ceb7020e3cee1f70bbd1cc0b4d8 (patch)
tree63befde48bed261a1fbed42543206711818858a3 /stage2/Lib.scala
parent3d321f42c19d2166204079ba7eece66b36037042 (diff)
downloadcbt-758611576a4f6ceb7020e3cee1f70bbd1cc0b4d8.tar.gz
cbt-758611576a4f6ceb7020e3cee1f70bbd1cc0b4d8.tar.bz2
cbt-758611576a4f6ceb7020e3cee1f70bbd1cc0b4d8.zip
ScalaPB plugin
Diffstat (limited to 'stage2/Lib.scala')
-rw-r--r--stage2/Lib.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/stage2/Lib.scala b/stage2/Lib.scala
index 4fdcf2d..fd3346e 100644
--- a/stage2/Lib.scala
+++ b/stage2/Lib.scala
@@ -131,6 +131,7 @@ final class Lib(val logger: Logger) extends Stage1Lib(logger){
//case e: ExitCode => System.err.println(e.integer); System.exit(e.integer); ???
case s: Seq[_] => s.map(render).mkString("\n")
case s: Set[_] => s.map(render).toSeq.sorted.mkString("\n")
+ case null => "null"
case _ => obj.toString
}
}