Merge branch 'extensions' into master

This commit is contained in:
Roland 2011-11-21 15:58:01 +01:00
commit 263e2d495d
8 changed files with 280 additions and 9 deletions

View file

@ -46,7 +46,7 @@ class Serialization(val system: ActorSystemImpl) {
* Tries to load the specified Serializer by the FQN
*/
def serializerOf(serializerFQN: String): Either[Exception, Serializer] =
ReflectiveAccess.createInstance(serializerFQN, ReflectiveAccess.emptyParams, ReflectiveAccess.emptyArguments)
ReflectiveAccess.createInstance(serializerFQN, ReflectiveAccess.noParams, ReflectiveAccess.noArgs)
private def serializerForBestMatchClass(cl: Class[_]): Either[Exception, Serializer] = {
if (bindings.isEmpty)