format source with scalafmt
This commit is contained in:
parent
0f40491d42
commit
ce404e4f53
1669 changed files with 43208 additions and 35404 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
package akka.testkit
|
||||
|
||||
import akka.actor.{ Props, Actor, ActorRef }
|
||||
import akka.actor.{ Actor, ActorRef, Props }
|
||||
|
||||
/**
|
||||
* A collection of common actor patterns used in tests.
|
||||
|
|
@ -36,7 +36,7 @@ object TestActors {
|
|||
*/
|
||||
class ForwardActor(ref: ActorRef) extends Actor {
|
||||
override def receive = {
|
||||
case message => ref forward message
|
||||
case message => ref.forward(message)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue