Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ir/representations/CFG.java
Original file line number Diff line number Diff line change
@@ -188,7 +188,7 @@ public Iterable<BasicBlock> getOutgoingDestinationsNotOfType(BasicBlock block, O
return graph.findVertexFor(block).getOutgoingDestinationsDataNotOfType(type);
}

public Set<Edge<BasicBlock>> getOutgoingEdges(BasicBlock block) {
public Collection<Edge<BasicBlock>> getOutgoingEdges(BasicBlock block) {
return graph.findVertexFor(block).getOutgoingEdges();
}

0 comments on commit 9221325

Please sign in to comment.