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)
|
||||
unqualified_name = node.class.name.split('::').last
|
||||
self.const_get(unqualified_name)
|
||||
const_get(unqualified_name)
|
||||
end
|
||||
|
||||
class Generator
|
||||
|
|
Loading…
Reference in a new issue