Fix modifiers order
See gh-11681
This commit is contained in:
committed by
Stephane Nicoll
parent
322a629b53
commit
e2d05607f2
@@ -43,7 +43,7 @@ class Connection {
|
||||
private static final Pattern WEBSOCKET_KEY_PATTERN = Pattern
|
||||
.compile("^Sec-WebSocket-Key:(.*)$", Pattern.MULTILINE);
|
||||
|
||||
public final static String WEBSOCKET_GUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
|
||||
public static final String WEBSOCKET_GUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
|
||||
|
||||
private final Socket socket;
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ public class HttpTunnelPayload {
|
||||
|
||||
private static final int BUFFER_SIZE = 1024 * 100;
|
||||
|
||||
final protected static char[] HEX_CHARS = "0123456789ABCDEF".toCharArray();
|
||||
protected final static char[] HEX_CHARS = "0123456789ABCDEF".toCharArray();
|
||||
|
||||
private static final Log logger = LogFactory.getLog(HttpTunnelPayload.class);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user