Rebased from master branch

This commit is contained in:
Jonas Bonér 2011-04-27 01:06:08 +02:00
commit 868ec62ee7
213 changed files with 19217 additions and 1551 deletions

View file

@ -44,7 +44,7 @@ trait Format[T <: Actor] extends FromBinary[T] with ToBinary[T]
* }
* </pre>
*/
trait StatelessActorFormat[T <: Actor] extends Format[T] with scala.Serializable{
trait StatelessActorFormat[T <: Actor] extends Format[T] with scala.Serializable {
def fromBinary(bytes: Array[Byte], act: T) = act
def toBinary(ac: T) = Array.empty[Byte]