Skip to content

Commit

Permalink
Fix issue #102 allow sequences on p:try outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ndw committed Jul 26, 2013
1 parent 84b47eb commit 0d6f80f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/com/xmlcalabash/model/Try.java
Expand Up @@ -61,12 +61,14 @@ protected void augmentIO() {
Input cinput = new Input(runtime, step.getNode());
cinput.setPort(input.getPort());
cinput.setPrimary(input.getPrimary());
cinput.setSequence(input.getSequence());
addInput(cinput);
}
for (Output output : step.outputs()) {
Output coutput = new Output(runtime, step.getNode());
coutput.setPort(output.getPort());
coutput.setPrimary(output.getPrimary());
coutput.setSequence(output.getSequence());
addOutput(coutput);
}
}
Expand Down

0 comments on commit 0d6f80f

Please sign in to comment.