reporting is only done in one thread, so we can safely remove the lock

(I think)
This commit is contained in:
Aaron Patterson 2014-07-17 18:43:46 -07:00
parent be9f868cb6
commit d4c8068675

@ -447,7 +447,7 @@ def initialize
end
def record reporter, result
reporter.synchronize { reporter.record result }
reporter.record result
end
def << o