# File lib/puppet-lint/checkplugin.rb, line 37
  def fix_problems
    @problems.each do |problem|
      if self.respond_to?(:fix)
        begin
          fix(problem)
        rescue PuppetLint::NoFix
          # noop
        else
          problem[:kind] = :fixed
        end
      end
    end

    @problems
  end