Skip to content

Commit 9221325

Browse files
committed
We don't need this to know it is a set
1 parent ea530e2 commit 9221325

File tree

1 file changed

+1
-1
lines changed
  • core/src/main/java/org/jruby/ir/representations

1 file changed

+1
-1
lines changed

core/src/main/java/org/jruby/ir/representations/CFG.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public Iterable<BasicBlock> getOutgoingDestinationsNotOfType(BasicBlock block, O
188188
return graph.findVertexFor(block).getOutgoingDestinationsDataNotOfType(type);
189189
}
190190

191-
public Set<Edge<BasicBlock>> getOutgoingEdges(BasicBlock block) {
191+
public Collection<Edge<BasicBlock>> getOutgoingEdges(BasicBlock block) {
192192
return graph.findVertexFor(block).getOutgoingEdges();
193193
}
194194

0 commit comments

Comments
 (0)