Fixes after review

This commit is contained in:
Viktor Klang 2012-01-26 17:47:31 +01:00
parent 5ddf1afb20
commit 1ebdcaca1a
3 changed files with 9 additions and 6 deletions

View file

@ -120,7 +120,10 @@ object Option {
implicit def scala2JavaOption[A](o: scala.Option[A]): Option[A] = if (o.isDefined) some(o.get) else none
}
object util {
/**
* This class hold common utilities for Java
*/
object Util {
/**
* Given a Class returns a Scala Manifest of that Class
*/