replace unicode arrows

* ⇒, →, ←
* because we don't want to show them in documentation snippets and
  then it's complicated to avoid that when snippets are
  located in src/test/scala in individual modules
* dont replace object `→` in FSM.scala and PersistentFSM.scala
This commit is contained in:
Patrik Nordwall 2019-02-09 15:25:39 +01:00
parent e4d38f92a4
commit 5c96a5f556
1521 changed files with 18846 additions and 18786 deletions

View file

@ -30,7 +30,7 @@ object LocalConcurrencySpec {
val replicator = DistributedData(context.system).replicator
def receive = {
case s: String
case s: String =>
val update = Replicator.Update(Updater.key, ORSet.empty[String], Replicator.WriteLocal)(_ :+ s)
replicator ! update
}
@ -64,7 +64,7 @@ class LocalConcurrencySpec(_system: ActorSystem) extends TestKit(_system)
val updater2 = system.actorOf(Props[Updater], "updater2")
val numMessages = 100
for (n 1 to numMessages) {
for (n <- 1 to numMessages) {
updater1 ! s"a$n"
updater2 ! s"b$n"
}