remove @since annotations with old Akka version numbers (#536)

This commit is contained in:
PJ Fanning 2023-08-04 11:18:24 +01:00 committed by GitHub
parent 4169e7d476
commit 3c0672bac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 12 deletions

View file

@ -954,8 +954,6 @@ trait FSM[S, D] extends Actor with Listeners with ActorLogging {
/** /**
* Stackable trait for [[pekko.actor.FSM]] which adds a rolling event log and * Stackable trait for [[pekko.actor.FSM]] which adds a rolling event log and
* debug logging capabilities (analogous to [[pekko.event.LoggingReceive]]). * debug logging capabilities (analogous to [[pekko.event.LoggingReceive]]).
*
* @since 1.2
*/ */
trait LoggingFSM[S, D] extends FSM[S, D] { this: Actor => trait LoggingFSM[S, D] extends FSM[S, D] { this: Actor =>

View file

@ -28,8 +28,6 @@
* tuples). * tuples).
* *
* @author Rex Kerr * @author Rex Kerr
* @version 2.9
* @since 2.9
*/ */
package org.apache.pekko.routing package org.apache.pekko.routing

View file

@ -159,8 +159,6 @@ object CallingThreadDispatcher {
* different thread) are scooped up into the current thread-local queue which * different thread) are scooped up into the current thread-local queue which
* is then executed. It is possible to suspend an actor from within its call * is then executed. It is possible to suspend an actor from within its call
* stack. * stack.
*
* @since 1.1
*/ */
class CallingThreadDispatcher(_configurator: MessageDispatcherConfigurator) extends MessageDispatcher(_configurator) { class CallingThreadDispatcher(_configurator: MessageDispatcherConfigurator) extends MessageDispatcher(_configurator) {
import CallingThreadDispatcher._ import CallingThreadDispatcher._

View file

@ -29,8 +29,6 @@ import pekko.pattern.ask
* This special ActorRef is exclusively for use during unit testing in a single-threaded environment. Therefore, it * This special ActorRef is exclusively for use during unit testing in a single-threaded environment. Therefore, it
* overrides the dispatcher to CallingThreadDispatcher and sets the receiveTimeout to None. Otherwise, * overrides the dispatcher to CallingThreadDispatcher and sets the receiveTimeout to None. Otherwise,
* it acts just like a normal ActorRef. You may retrieve a reference to the underlying actor to test internal logic. * it acts just like a normal ActorRef. You may retrieve a reference to the underlying actor to test internal logic.
*
* @since 1.1
*/ */
@nowarn // 'early initializers' are deprecated on 2.13 and will be replaced with trait parameters on 2.14. https://github.com/akka/akka/issues/26753 @nowarn // 'early initializers' are deprecated on 2.13 and will be replaced with trait parameters on 2.14. https://github.com/akka/akka/issues/26753
class TestActorRef[T <: Actor](_system: ActorSystem, _props: Props, _supervisor: ActorRef, name: String) class TestActorRef[T <: Actor](_system: ActorSystem, _props: Props, _supervisor: ActorRef, name: String)

View file

@ -40,8 +40,6 @@ import pekko.actor._
* assert (fsm.stateName == 2) * assert (fsm.stateName == 2)
* assert (fsm.underlyingActor.getLog == IndexedSeq(FSMLogEntry(1, null, "hallo"))) * assert (fsm.underlyingActor.getLog == IndexedSeq(FSMLogEntry(1, null, "hallo")))
* </code></pre> * </code></pre>
*
* @since 1.2
*/ */
class TestFSMRef[S, D, T <: Actor](system: ActorSystem, props: Props, supervisor: ActorRef, name: String)( class TestFSMRef[S, D, T <: Actor](system: ActorSystem, props: Props, supervisor: ActorRef, name: String)(
implicit ev: T <:< FSM[S, D]) implicit ev: T <:< FSM[S, D])

View file

@ -977,8 +977,6 @@ trait TestKitBase {
* It should be noted that for CI servers and the like all maximum Durations * It should be noted that for CI servers and the like all maximum Durations
* are scaled using their Duration.dilated method, which uses the * are scaled using their Duration.dilated method, which uses the
* TestKitExtension.Settings.TestTimeFactor settable via pekko.conf entry "pekko.test.timefactor". * TestKitExtension.Settings.TestTimeFactor settable via pekko.conf entry "pekko.test.timefactor".
*
* @since 1.1
*/ */
@nowarn // 'early initializers' are deprecated on 2.13 and will be replaced with trait parameters on 2.14. https://github.com/akka/akka/issues/26753 @nowarn // 'early initializers' are deprecated on 2.13 and will be replaced with trait parameters on 2.14. https://github.com/akka/akka/issues/26753
class TestKit(_system: ActorSystem) extends TestKitBase { class TestKit(_system: ActorSystem) extends TestKitBase {