From e3ec1f6ca97c11b01d9a4a9c72177c9e88116e9d Mon Sep 17 00:00:00 2001 From: Maciek Misztal Date: Fri, 14 Sep 2018 00:42:16 +0200 Subject: [PATCH] #3563 return type changed TMat -> TMat3 --- src/core/Akka.Streams/Dsl/BidiFlow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Akka.Streams/Dsl/BidiFlow.cs b/src/core/Akka.Streams/Dsl/BidiFlow.cs index 46b52ed4ad6..6b4d094e0bb 100644 --- a/src/core/Akka.Streams/Dsl/BidiFlow.cs +++ b/src/core/Akka.Streams/Dsl/BidiFlow.cs @@ -278,13 +278,13 @@ public BidiFlow Atop(Bid /// TBD /// TBD /// TBD - public BidiFlow AtopMat(BidiFlow bidi, Func combine) + public BidiFlow AtopMat(BidiFlow bidi, Func combine) { var copy = bidi.Module.CarbonCopy(); var ins = copy.Shape.Inlets.ToArray(); var outs = copy.Shape.Outlets.ToArray(); - return new BidiFlow(Module + return new BidiFlow(Module .Compose(copy, combine) .Wire(Shape.Outlet1, ins[0]) .Wire(outs[1], Shape.Inlet2)