Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -30,7 +30,9 @@ public synchronized void run() {
final ListIterator<RubyProc> iterator = blocks.listIterator(blocks.size());

while (iterator.hasPrevious()) {
iterator.previous().rootCall();
RubyProc hook = iterator.previous();
iterator.remove();
hook.rootCall();
}
}
}

0 comments on commit f4d56c9

Please sign in to comment.