=str fixes wrong / missing cross references in scaladoc

This commit is contained in:
Tim Harper 2015-11-23 01:01:32 -07:00 committed by Tim Harper
parent ce2d666c06
commit d1e5dbb8bb
2 changed files with 4 additions and 1 deletions

View file

@ -799,6 +799,8 @@ final class Flow[-In, +Out, +Mat](delegate: scaladsl.Flow[In, Out, Mat]) extends
* '''Completes when''' upstream completes * '''Completes when''' upstream completes
* *
* '''Cancels when''' downstream cancels and substreams cancel * '''Cancels when''' downstream cancels and substreams cancel
*
* See also [[Flow.splitAfter]].
*/ */
def splitWhen(p: function.Predicate[Out]): javadsl.Flow[In, Source[Out, Unit], Mat] = def splitWhen(p: function.Predicate[Out]): javadsl.Flow[In, Source[Out, Unit], Mat] =
new Flow(delegate.splitWhen(p.test).map(_.asJava)) new Flow(delegate.splitWhen(p.test).map(_.asJava))

View file

@ -957,6 +957,7 @@ trait FlowOps[+Out, +Mat] {
* *
* '''Cancels when''' downstream cancels and substreams cancel * '''Cancels when''' downstream cancels and substreams cancel
* *
* See also [[FlowOps.splitAfter]].
*/ */
def splitWhen[U >: Out](p: Out Boolean): Repr[Source[U, Unit], Mat] = def splitWhen[U >: Out](p: Out Boolean): Repr[Source[U, Unit], Mat] =
deprecatedAndThen(Split.when(p.asInstanceOf[Any Boolean])) deprecatedAndThen(Split.when(p.asInstanceOf[Any Boolean]))
@ -991,7 +992,7 @@ trait FlowOps[+Out, +Mat] {
* *
* '''Cancels when''' downstream cancels and substreams cancel * '''Cancels when''' downstream cancels and substreams cancel
* *
* See also [[FlowOps.splitAfter]]. * See also [[FlowOps.splitWhen]].
*/ */
def splitAfter[U >: Out](p: Out Boolean): Repr[Source[U, Unit], Mat] = def splitAfter[U >: Out](p: Out Boolean): Repr[Source[U, Unit], Mat] =
deprecatedAndThen(Split.after(p.asInstanceOf[Any Boolean])) deprecatedAndThen(Split.after(p.asInstanceOf[Any Boolean]))