Resolve merge conflict with master

This commit is contained in:
Viktor Klang 2011-09-19 19:00:58 +02:00
commit f9e23c3102
98 changed files with 480 additions and 546 deletions

View file

@ -40,7 +40,7 @@ object Pi extends App {
def receive = {
case Work(start, nrOfElements)
self reply Result(calculatePiFor(start, nrOfElements)) // perform the work
reply(Result(calculatePiFor(start, nrOfElements))) // perform the work
}
}