!str #19137: Rename inlet and outlet to in and out on Flow/Source/SinkShape

This commit is contained in:
Endre Sándor Varga 2015-12-14 14:52:06 +01:00
parent 3d20915cf4
commit b478d70964
44 changed files with 272 additions and 247 deletions

View file

@ -339,9 +339,9 @@ trait GraphInterpreterSpecKit {
while (i < ops.length) {
val stage = ops(i).asInstanceOf[PushPullGraphStage[_, _, _]]
ins(i) = stage.shape.inlet
ins(i) = stage.shape.in
inOwners(i) = i
outs(i + 1) = stage.shape.outlet
outs(i + 1) = stage.shape.out
outOwners(i + 1) = i
i += 1
}