Getting started referred to a package name not present in quickstart (#28549)

* Getting started referred to a package name not present in quickstart

Techhub zip has com.example and g8 template defaults to com.example so let's refer to that instead

* Missing logger ops in one Scala example snippet
This commit is contained in:
Johan Andrén 2020-02-04 14:41:01 +01:00 committed by GitHub
parent 84e88bff02
commit 289ca787a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,6 @@ package typed.tutorial_3
import akka.actor.typed.PostStop
import akka.actor.typed.Signal
import akka.actor.typed.scaladsl.LoggerOps
object DeviceInProgress1 {
@ -30,6 +29,7 @@ object DeviceInProgress2 {
import akka.actor.typed.scaladsl.AbstractBehavior
import akka.actor.typed.scaladsl.ActorContext
import akka.actor.typed.scaladsl.Behaviors
import akka.actor.typed.scaladsl.LoggerOps
object Device {
def apply(groupId: String, deviceId: String): Behavior[Command] =