class RDoc::ClassModule

def remove_things(my_things, other_files) # :nodoc:

:nodoc:
def remove_things(my_things, other_files) # :nodoc:
  my_things.delete_if do |file, things|
    next false unless other_files.include? file
    things.each do |thing|
      yield false, thing
    end
    true
  end
end