netty5/codec-http/src/main/java/io/netty/handler/codec
Guido Medina 5b59250657 TreeMap extra get operation removed.
Motivation:
Checking if a key exists on a TreeMap has a Big O of "log 2 N",
doing it twice is not cheap.

Modifications:
Get the key instead which has the same cost and check if it is null.

Result:
Faster code due to one expensive operation removed.
2016-04-25 09:49:05 -07:00
..
http We need to ensure we correct reset decoder in decodeLast() to not produce multiple LastHttpContent instances. 2016-04-14 09:33:23 +02:00
rtsp Fix errors reported by javadoc 2015-12-27 08:36:45 +01:00
spdy TreeMap extra get operation removed. 2016-04-25 09:49:05 -07:00