Lots and lots of work to get things to compile without warnings

This commit is contained in:
Viktor Klang 2012-06-13 15:44:24 +02:00
parent 6b468d8856
commit 4ee2033761
12 changed files with 51 additions and 46 deletions

View file

@ -5,6 +5,7 @@
package akka.japi
import scala.Some
import scala.reflect.ClassTag
/**
* A Function interface. Used to create first-class-functions is Java.
@ -116,5 +117,5 @@ object Util {
/**
* Given a Class returns a Scala Manifest of that Class
*/
def manifest[T](clazz: Class[T]): Manifest[T] = Manifest.classType(clazz)
def classTag[T](clazz: Class[T]): ClassTag[T] = ClassTag(clazz)
}