# File lib/brakeman/util.rb, line 440
  def relative_path file
    pname = Pathname.new file
    if file and not file.empty? and pname.absolute?
      pname.relative_path_from(Pathname.new(@tracker.app_path)).to_s
    else
      file
    end
  end