Method: HTTP::Protocol::Headers#freeze

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

#freezeObject



74
75
76
77
78
79
80
# File 'lib/http/protocol/headers.rb', line 74

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