removed trailing whitespace

This commit is contained in:
Jonas Bonér 2010-08-28 19:27:42 +02:00
parent fc7068282d
commit ee47eaee5b
13 changed files with 62 additions and 84 deletions

View file

@ -464,25 +464,3 @@ class RemoteClientHandler(
.newInstance(exception.getMessage).asInstanceOf[Throwable]
}
}
object RemoteDisconnectTest {
import se.scalablesolutions.akka.actor.{Actor,ActorRef}
class TestClientActor extends Actor {
def receive = {
case ("send ping",akt:ActorRef) => akt ! "ping"
case "pong" => {
log.debug("got pong")
}
}
}
class TestServerActor extends Actor {
def receive = {
case "ping" => {
log.debug("got ping")
self reply "pong"
}
}
}
}