fixed warning on unused result

This commit is contained in:
michael-bailey 2020-09-27 16:52:16 +01:00
parent df39e03f93
commit 9ce38aeb49
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ impl Server {
// MARK: - creating clones of the server property references
let name = self.name.clone();
#[allow(dead_code)]
let address = self.address.clone();
let _ = self.address.clone();
let author = self.author.clone();
let connected_clients = self.connected_clients.clone();
let sender = self.sender.clone();