Skip to content

Commit

Permalink
akkadotnet#3563 return type changed TMat -> TMat3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmisztal1980 committed Sep 13, 2018
1 parent e67152d commit e3ec1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Akka.Streams/Dsl/BidiFlow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,13 @@ public BidiFlow<TIn1, TOut12, TIn21, TOut2, TMat> Atop<TOut12, TIn21, TMat2>(Bid
/// <param name="bidi">TBD</param>
/// <param name="combine">TBD</param>
/// <returns>TBD</returns>
public BidiFlow<TIn1, TOut12, TIn21, TOut2, TMat> AtopMat<TOut12, TIn21, TMat2, TMat3>(BidiFlow<TOut1, TOut12, TIn21, TIn2, TMat2> bidi, Func<TMat, TMat2, TMat3> combine)
public BidiFlow<TIn1, TOut12, TIn21, TOut2, TMat3> AtopMat<TOut12, TIn21, TMat2, TMat3>(BidiFlow<TOut1, TOut12, TIn21, TIn2, TMat2> bidi, Func<TMat, TMat2, TMat3> combine)
{
var copy = bidi.Module.CarbonCopy();
var ins = copy.Shape.Inlets.ToArray();
var outs = copy.Shape.Outlets.ToArray();

return new BidiFlow<TIn1, TOut12, TIn21, TOut2, TMat>(Module
return new BidiFlow<TIn1, TOut12, TIn21, TOut2, TMat3>(Module
.Compose(copy, combine)
.Wire(Shape.Outlet1, ins[0])
.Wire(outs[1], Shape.Inlet2)
Expand Down

0 comments on commit e3ec1f6

Please sign in to comment.