class WebMock::HttpLibAdapters::NetHttpAdapter

def self.remove_silently(mod, const) #:nodoc:

:nodoc:
def self.remove_silently(mod, const) #:nodoc:
  # Don't warn on removing the deprecated constant
  verbose, $VERBOSE = $VERBOSE, nil
  mod.send(:remove_const, const)
ensure
  $VERBOSE = verbose
end