diff options
| author | Zeyla Hellyer <[email protected]> | 2018-06-17 15:53:09 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2018-06-17 15:53:09 -0700 |
| commit | 6ddfef8359a619be9a49be7b33b466724eed0ecb (patch) | |
| tree | 5fb9c070b1650b95aa6b5713b3630fc253095275 /src/voice/connection.rs | |
| parent | Fix Args test (diff) | |
| download | serenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.tar.xz serenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.zip | |
Remove extraneous spaces at the end of lines
Diffstat (limited to 'src/voice/connection.rs')
| -rw-r--r-- | src/voice/connection.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/voice/connection.rs b/src/voice/connection.rs index 8e94486..54d9116 100644 --- a/src/voice/connection.rs +++ b/src/voice/connection.rs @@ -1,8 +1,8 @@ use byteorder::{ - BigEndian, - ByteOrder, - LittleEndian, - ReadBytesExt, + BigEndian, + ByteOrder, + LittleEndian, + ReadBytesExt, WriteBytesExt }; use constants::VOICE_GATEWAY_VERSION; @@ -32,15 +32,15 @@ use std::{ net::{SocketAddr, ToSocketAddrs, UdpSocket}, sync::{ mpsc::{ - self, - Receiver as MpscReceiver, + self, + Receiver as MpscReceiver, Sender as MpscSender }, Arc, }, thread::{ - self, - Builder as ThreadBuilder, + self, + Builder as ThreadBuilder, JoinHandle }, time::Duration @@ -53,8 +53,8 @@ use websocket::{ sync::{ client::ClientBuilder, stream::{ - AsTcpStream, - TcpStream, + AsTcpStream, + TcpStream, TlsStream }, }, |