Fixing a regression in Actor

This commit is contained in:
Viktor Klang 2011-02-22 19:21:45 +01:00
parent e2fc947d05
commit 169d97ee5f

View file

@ -411,7 +411,7 @@ trait Actor extends Logging {
/**
* Is the actor able to handle the message passed in as arguments?
*/
final def isDefinedAt(message: Any): Boolean = processingBehavior.isDefinedAt(message)
def isDefinedAt(message: Any): Boolean = processingBehavior.isDefinedAt(message)
/**
* Changes tha Actor's behavior to become the new 'Receive' (PartialFunction[Any, Unit]) handler.