Commit 49bd430f authored by Taddeus Kroes's avatar Taddeus Kroes

Removed useless length check.

parent 6dd921a7
......@@ -72,9 +72,6 @@ def create_in_out(blocks):
# Start by analyzing the exit points
work_list = set()
if len(blocks) == 1:
work_list.add(blocks[0])
else:
for b in blocks:
if b.edges_from and not b.edges_to:
work_list.add(b)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment