Fix style issue in Printer::Config

This commit is contained in:
Markus Schirp 2013-07-28 18:58:14 +02:00
parent 9234b01f84
commit 07ddb9b70e

View file

@ -130,8 +130,9 @@ module Mutant
def generic_stats
object.subjects.each_with_object(Hash.new(0)) do |runner, stats|
Walker.run(runner.subject.node) do |node|
next unless Mutator::Registry.lookup(node) == Mutator::Node::Generic
stats[node.type] += 1
if Mutator::Registry.lookup(node) == Mutator::Node::Generic
stats[node.type] += 1
end
end
end
end