Fix style issue in Printer::Config
This commit is contained in:
parent
9234b01f84
commit
07ddb9b70e
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue