# File lib/brakeman/rescanner.rb, line 13
  def initialize options, processor, changed_files
    super(options, processor)

    @paths = changed_files.map {|f| @app_tree.expand_path(f) }
    @old_results = tracker.filtered_warnings  #Old warnings from previous scan
    @changes = nil                 #True if files had to be rescanned
    @reindex = Set.new
  end