Unicode arrows (#26965)

This commit is contained in:
Arnout Engelen 2019-05-21 13:35:11 +02:00 committed by GitHub
parent 9f76d55c2b
commit 4ac513a523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 56 additions and 55 deletions

View file

@ -387,7 +387,7 @@ object Source {
* [[Attributes]] of the [[Source]] returned by this method.
*/
def setup[T, M](factory: BiFunction[ActorMaterializer, Attributes, Source[T, M]]): Source[T, CompletionStage[M]] =
scaladsl.Source.setup((mat, attr) factory(mat, attr).asScala).mapMaterializedValue(_.toJava).asJava
scaladsl.Source.setup((mat, attr) => factory(mat, attr).asScala).mapMaterializedValue(_.toJava).asJava
/**
* Combines several sources with fan-in strategy like `Merge` or `Concat` and returns `Source`.