Compiler Warnings:
[warn] there were 5 deprecation warnings; re-run with -deprecation for details
Change the settings in sbt
$ sbt
var script = document.createElement("script"); | |
script.src = "http://whatever.com/js/my/script.js"; | |
document.body.appendChild(script); | |
import akka.actor._ | |
import akka.stream._ | |
import akka.stream.scaladsl._ | |
import com.typesafe.config.ConfigFactory | |
val customConf = ConfigFactory.parseString(""" | |
akka.loglevel = "DEBUG" | |
akka.actor.debug.lifecycle = "on" | |
akka.actor.debug.receive = "on" | |
akka.actor.debug.autoreceive = "on" |
Compiler Warnings:
[warn] there were 5 deprecation warnings; re-run with -deprecation for details
Change the settings in sbt
$ sbt
trait Super { | |
type A | |
def value: A | |
} | |
case class B1( value: String ) extends Super { | |
type A = String | |
} |