netty5/codec-http/src
Gerd Riesselmann ae313513dd Avoid possible comparison contract violation (#9883)
Motivation:

The current implementation causes IllegalArgumetExceptions to be thrown on Java 11.

The current implementation would violate comparison contract for two cookies C1 and C2 with same path length, since C1 < C2 and C2 < C1. Returning 0 (equality) does not since C1 == C2 and C2 == C1. See #9881

Modification:

Return equality instead of less than on same path length.

Result:

Fixes #9881.
2019-12-19 12:28:25 +01:00
..
main Avoid possible comparison contract violation (#9883) 2019-12-19 12:28:25 +01:00
test Revert "Bugfix #9673: Origin header is always sent from WebSocket client (#9692)" 2019-12-18 09:24:17 +01:00