Fixing a regression in Actor
This commit is contained in:
parent
e2fc947d05
commit
169d97ee5f
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue