class RuboCop::Cop::Lint::DuplicateRequire

def on_new_investigation

def on_new_investigation
  # Holds the known required files for a given parent node (used as key)
  @required = Hash.new { |h, k| h[k] = Set.new }.compare_by_identity
  super
end