Some cleanup and additional tests for Serializable. See #1786

* Tried to add @SerialVersionUID(1L) but that removed static forwarders, due to https://issues.scala-lang.org/browse/SI-4804
* Added Serializable to UntypedActorFactory
* Removed some unecessary Serializable
This commit is contained in:
Patrik Nordwall 2012-02-07 10:28:42 +01:00
parent 9c8c0d42c5
commit 2a167acd92
10 changed files with 24 additions and 25 deletions

View file

@ -103,7 +103,7 @@ object Props {
* Props props = new Props(MyActor.class).withRouter(new RoundRobinRouter(..));
* }}}
*/
@SerialVersionUID(1L)
//TODO add @SerialVersionUID(1L) when SI-4804 is fixed when SI-4804 is fixed
case class Props(
creator: () Actor = Props.defaultCreator,
dispatcher: String = Dispatchers.DefaultDispatcherId,