Merge pull request #719 from akka/wip-2530-deprecate-tell1-∂π

remove all but one occurrence of single-arg tell()
This commit is contained in:
Viktor Klang (√) 2012-09-21 03:05:00 -07:00
commit a323161b2f
71 changed files with 550 additions and 538 deletions

View file

@ -29,7 +29,7 @@ class PrintlnActor extends Actor {
//#fibonacciActor
class FibonacciActor extends Actor {
def receive = {
case FibonacciNumber(nbr) sender tell fibonacci(nbr)
case FibonacciNumber(nbr) sender ! fibonacci(nbr)
}
private def fibonacci(n: Int): Int = {