class RuboCop::Cop::Legacy::CorrectionsProxy

def concat(corrections)

def concat(corrections)
  if corrections.is_a?(CorrectionsProxy)
    suppress_clobbering { corrector.merge!(corrections.corrector) }
  else
    corrections.each { |correction| self << correction }
  end
end