Remove unneeded explict self receiver
This commit is contained in:
parent
564220c453
commit
e6c6c8e5fd
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ module Mutant
|
||||||
#
|
#
|
||||||
def self.mutator(node)
|
def self.mutator(node)
|
||||||
unqualified_name = node.class.name.split('::').last
|
unqualified_name = node.class.name.split('::').last
|
||||||
self.const_get(unqualified_name)
|
const_get(unqualified_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
class Generator
|
class Generator
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue