This is an automated email from the ASF dual-hosted git repository. He-Pin pushed a commit to branch fix/scaladoc-warnings in repository https://gitbox.apache.org/repos/asf/pekko.git
commit 8cd24b2882fbb32390939e0a2984eff706bd70ba Author: 虎鸣 <[email protected]> AuthorDate: Sun Jul 5 21:35:46 2026 +0800 fix: restore fully qualified package name in ActorSource scaladoc references Motivation: PR #3285 review comment from pjfanning: "should we keep the package name?" The original [[pekko.stream.javadsl.Source.queue]] and [[pekko.stream.scaladsl.Source.queue]] links were replaced with just `Source.queue`, dropping the package name and making the reference ambiguous. Modification: Restore the fully qualified package names in the scaladoc "See also" references for both javadsl and scaladsl ActorSource.scala files. Result: Scaladoc references now include the full package path, making it clear which Source.queue class is being referenced. Tests: Not run - docs only References: Refs apache/pekko#3285 --- .../main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala | 2 +- .../main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stream-typed/src/main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala b/stream-typed/src/main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala index 58ab1afffb..cea0acd0c4 100644 --- a/stream-typed/src/main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala +++ b/stream-typed/src/main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala @@ -51,7 +51,7 @@ object ActorSource { * The actor will be stopped when the stream is completed, failed or canceled from downstream, * i.e. you can watch it to get notified when that happens. * - * See also `Source.queue`. + * See also `org.apache.pekko.stream.javadsl.Source.queue`. * * @param bufferSize The size of the buffer in element count * @param overflowStrategy Strategy that is used when incoming elements cannot fit inside the buffer diff --git a/stream-typed/src/main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala b/stream-typed/src/main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala index 1a910b8d0b..5e79f4fd65 100644 --- a/stream-typed/src/main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala +++ b/stream-typed/src/main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala @@ -51,7 +51,7 @@ object ActorSource { * The actor will be stopped when the stream is completed, failed or canceled from downstream, * i.e. you can watch it to get notified when that happens. * - * See also `Source.queue`. + * See also `org.apache.pekko.stream.scaladsl.Source.queue`. * * @param bufferSize The size of the buffer in element count * @param overflowStrategy Strategy that is used when incoming elements cannot fit inside the buffer --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
