fixed bug in aspect registry

This commit is contained in:
Jonas Bonér 2010-02-28 08:51:11 +01:00
parent b4a46016eb
commit 7babcc9d54

View file

@ -75,7 +75,7 @@ object ActorRegistry extends Logging {
def unregister(actor: Actor) = synchronized {
actorsByClassName - actor.getClass.getName
actorsById - actor.getClass.getName
actorsById - actor.getId
}
def shutdownAll = {