Method: HTTP::Protocol::Headers#freeze

Defined in:
lib/http/protocol/headers.rb

#freezeObject



63
64
65
66
67
68
69
# File 'lib/http/protocol/headers.rb', line 63

def freeze
  return if frozen?
  
  @indexed = to_h
  
  super
end