From 6429bdc532a5e817dadf4aaf04febf3c74402463 Mon Sep 17 00:00:00 2001 From: Dan Kubb Date: Sat, 7 Sep 2013 23:57:20 -0700 Subject: [PATCH] Remove method duplicated in parent class --- lib/mutant/mutator/node/literal.rb | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/mutant/mutator/node/literal.rb b/lib/mutant/mutator/node/literal.rb index 02910874..38a80550 100644 --- a/lib/mutant/mutator/node/literal.rb +++ b/lib/mutant/mutator/node/literal.rb @@ -6,23 +6,6 @@ module Mutant # Abstract mutator for literal AST nodes class Literal < self include AbstractType - - private - - # Emit a new node with wrapping class for each entry in values - # - # @param [Array] values - # - # @return [undefined] - # - # @api private - # - def emit_values(values) - values.each do |value| - emit_self(value) - end - end - end # Literal end # Node end # Mutator