Skip to content

Commit

Permalink
We don't need this to know it is a set
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Dec 15, 2014
1 parent ea530e2 commit 9221325
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
Expand Up @@ -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();
}

Expand Down

0 comments on commit 9221325

Please sign in to comment.