From abbaffc3039148620d0a6d6cd2f7b85d9ff4f682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Tue, 16 Feb 2021 10:38:45 +0100 Subject: [PATCH] Unmoored doc comment fixed (#30038) --- .../persistence/typed/internal/EventSourcedBehaviorImpl.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/akka-persistence-typed/src/main/scala/akka/persistence/typed/internal/EventSourcedBehaviorImpl.scala b/akka-persistence-typed/src/main/scala/akka/persistence/typed/internal/EventSourcedBehaviorImpl.scala index fa95a44fd3..f6d43f95df 100644 --- a/akka-persistence-typed/src/main/scala/akka/persistence/typed/internal/EventSourcedBehaviorImpl.scala +++ b/akka-persistence-typed/src/main/scala/akka/persistence/typed/internal/EventSourcedBehaviorImpl.scala @@ -122,9 +122,7 @@ private[akka] final case class EventSourcedBehaviorImpl[Command, Event, State]( // stashState outside supervise because StashState should survive restarts due to persist failures val stashState = new StashState(ctx.asInstanceOf[ActorContext[InternalProtocol]], settings) - /** - * This method ensures that the MDC is set before we use the internal logger - */ + // This method ensures that the MDC is set before we use the internal logger def internalLogger() = { // MDC is cleared (if used) from aroundReceive in ActorAdapter after processing each message, // but important to call `context.log` to mark MDC as used