Fix typed initial inports (#24384)

This commit is contained in:
Christopher Batey 2018-01-22 16:28:16 +00:00 committed by GitHub
parent 155e765c9d
commit b48d907d66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -370,8 +370,8 @@ lazy val actorTyped = akkaModule("akka-actor-typed")
.settings(AutomaticModuleName.settings("akka.actor.typed")) // fine for now, eventually new module name to become typed.actor .settings(AutomaticModuleName.settings("akka.actor.typed")) // fine for now, eventually new module name to become typed.actor
.settings( .settings(
initialCommands := """ initialCommands := """
import akka.typed._ import akka.actor.typed._
import akka.typed.scaladsl.Actor import akka.actor.typed.scaladsl.Behaviors
import scala.concurrent._ import scala.concurrent._
import scala.concurrent.duration._ import scala.concurrent.duration._
import akka.util.Timeout import akka.util.Timeout