Method: Protocol::HTTP::Headers#flatten!

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

#flatten!Object

Flatten trailer into the headers.



88
89
90
91
92
93
94
95
# File 'lib/protocol/http/headers.rb', line 88

def flatten!
	if @tail
		self.delete(TRAILER)
		@tail = nil
	end
	
	return self
end