From c5ae3e3dcba623c46dabd3b963769bced454892f Mon Sep 17 00:00:00 2001
From: Trustin Lee
- * Performs server side opening and closing handshakes for RFC 6455
- * (originally web socket specification draft-ietf-hybi-thewebsocketprotocol-17).
+ * Performs server side opening and closing handshakes for RFC 6455
+ * (originally web socket specification draft-ietf-hybi-thewebsocketprotocol-17).
* HashDOS vulnerability fix
*
- * As a workaround to the HashDOS vulnerability, the decoder
+ * As a workaround to the HashDOS vulnerability, the decoder
* limits the maximum number of decoded key-value parameter pairs, up to {@literal 1024} by
* default, and you can configure it when you construct the decoder by passing an additional
* integer parameter.
diff --git a/codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker13.java b/codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker13.java
index d4839e930f..07652c6434 100644
--- a/codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker13.java
+++ b/codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker13.java
@@ -29,8 +29,8 @@ import static io.netty.handler.codec.http.HttpVersion.*;
/**
*
- *
*
diff --git a/common/src/main/java/io/netty/util/internal/MpscLinkedQueue.java b/common/src/main/java/io/netty/util/internal/MpscLinkedQueue.java index 10a7daae90..652bccbcf1 100644 --- a/common/src/main/java/io/netty/util/internal/MpscLinkedQueue.java +++ b/common/src/main/java/io/netty/util/internal/MpscLinkedQueue.java @@ -55,12 +55,12 @@ import java.util.Queue; * * The initial implementation is based on: *