From 0fdb72fd87b928efcd1491e71fc83abc3f2ffb4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andre=CC=81n?= Date: Wed, 4 May 2016 16:57:53 +0200 Subject: [PATCH] =act #20447 fix UntypedActorWithStash javadoc --- .../src/main/scala/akka/actor/UntypedActorWithStash.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/akka-actor/src/main/scala/akka/actor/UntypedActorWithStash.scala b/akka-actor/src/main/scala/akka/actor/UntypedActorWithStash.scala index de638bf6f5..4746f1db0c 100644 --- a/akka-actor/src/main/scala/akka/actor/UntypedActorWithStash.scala +++ b/akka-actor/src/main/scala/akka/actor/UntypedActorWithStash.scala @@ -47,14 +47,14 @@ package akka.actor abstract class UntypedActorWithStash extends UntypedActor with Stash /** - * Actor base class with `Stash` that enforces an unbounded deque for the actor. The proper mailbox has to be configured - * manually, and the mailbox should extend the [[akka.dispatch.DequeBasedMessageQueueSemantics]] marker trait. + * Actor base class with `Stash` that enforces an unbounded deque for the actor. * See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works. */ abstract class UntypedActorWithUnboundedStash extends UntypedActor with UnboundedStash /** - * Actor base class with `Stash` that does not enforce any mailbox type. The mailbox of the actor has to be configured - * manually. See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works. + * Actor base class with `Stash` that does not enforce any mailbox type. The proper mailbox has to be configured + * manually, and the mailbox should extend the [[akka.dispatch.DequeBasedMessageQueueSemantics]] marker trait. + * See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works. */ abstract class UntypedActorWithUnrestrictedStash extends UntypedActor with UnrestrictedStash