81f9434ec7
Motivation: For multi-line headers HttpObjectDecoder uses StringBuilder.append(a).append(b) pattern that could be easily replaced with regular a + b. Also oparations with a and b moved out from concat operation to make it friendly for StringOptimizeConcat optimization and thus - faster. Modification: StringBuilder.append(a).append(b) reaplced with a + b. Operations with a and b moved out from concat oparation. Result: Code simpler to read and faster. |
||
---|---|---|
.. | ||
src | ||
pom.xml |