diff options
author | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2018-03-25 19:36:34 -0400 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-07-24 09:51:03 +0200 |
commit | a22e746bc3478bcba8540fbf30de58ebf975b132 (patch) | |
tree | dc7f8223597b1d05c62beb521643061b2f780d75 /modules/websocket | |
parent | 4b277c2c20438c5aada0d45f1e4228b15249faee (diff) |
Removed unnecessary assignments
Diffstat (limited to 'modules/websocket')
-rw-r--r-- | modules/websocket/emws_client.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/websocket/emws_client.cpp b/modules/websocket/emws_client.cpp index 1405fa98b0..00c36ebb47 100644 --- a/modules/websocket/emws_client.cpp +++ b/modules/websocket/emws_client.cpp @@ -64,7 +64,6 @@ Error EMWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port, String str = "ws://"; String proto_string = ""; - int i = 0; if (p_ssl) str = "wss://"; |