# File lib/brakeman/tracker/collection.rb, line 63
    def get_method name
      each_method do |n, info|
        if n == name
          return info
        end
      end

      nil
    end