Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2016-04-18 23:57:13 +0300
committerCasey Deccio <casey@deccio.net>2016-04-18 23:57:13 +0300
commit079da1d631d44746d8abd098971b5b92ea1808b5 (patch)
treeeace34a388b69b5152e57bba4aee69921b41354c /contrib
parentc5231f19fda7cd929a13e576f50fa0ae6a1a4a2d (diff)
Remove trailing whitespace
Diffstat (limited to 'contrib')
-rw-r--r--contrib/dnsviz-lg-java/net/dnsviz/websocket/WebSocketClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/dnsviz-lg-java/net/dnsviz/websocket/WebSocketClient.java b/contrib/dnsviz-lg-java/net/dnsviz/websocket/WebSocketClient.java
index a0ac4fc..7140f8c 100644
--- a/contrib/dnsviz-lg-java/net/dnsviz/websocket/WebSocketClient.java
+++ b/contrib/dnsviz-lg-java/net/dnsviz/websocket/WebSocketClient.java
@@ -78,7 +78,7 @@ public class WebSocketClient {
String headers = "GET " + path + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Upgrade: websocket\r\n" +
- "Connection: Upgrade\r\n" +
+ "Connection: Upgrade\r\n" +
"Sec-WebSocket-Key: " + clientKey + "\r\n" +
"Origin: " + origin + "\r\n" +
"Sec-WebSocket-Version: " + WEBSOCKET_VERSION + "\r\n\r\n";
@@ -255,7 +255,7 @@ public class WebSocketClient {
}
}
-
+
if (totalLength > 0x7fffffff) {
throw new IOException("Total message size too big for array");
}