Fix modifiers order

See gh-11681
This commit is contained in:
igor-suhorukov
2018-01-19 01:18:18 +03:00
committed by Stephane Nicoll
parent 322a629b53
commit e2d05607f2
22 changed files with 25 additions and 25 deletions

View File

@@ -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;

View File

@@ -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);