Remove procedure syntax (#25362)

This commit is contained in:
kenji yoshida 2018-07-25 20:38:27 +09:00 committed by Johan Andrén
parent 50979d599c
commit 5b3b191bac
180 changed files with 403 additions and 403 deletions

View file

@ -20,7 +20,7 @@ class VersionVectorSpec extends TestKit(ActorSystem("VersionVectorSpec"))
val node3 = UniqueAddress(node1.address.copy(port = Some(2553)), 3)
val node4 = UniqueAddress(node1.address.copy(port = Some(2554)), 4)
override def afterAll {
override def afterAll: Unit = {
shutdown()
}

View file

@ -51,7 +51,7 @@ class ReplicatedDataSerializerSpec extends TestKit(ActorSystem(
val ref2 = system.actorOf(Props.empty, "ref2")
val ref3 = system.actorOf(Props.empty, "ref3")
override def afterAll {
override def afterAll: Unit = {
shutdown()
}

View file

@ -51,7 +51,7 @@ class ReplicatorMessageSerializerSpec extends TestKit(ActorSystem(
val keyA = GSetKey[String]("A")
override def afterAll {
override def afterAll: Unit = {
shutdown()
}