Fixed clippy warnings (#90)

* Fixed clippy warnings

* Fix as per review
This commit is contained in:
boyned//Kampfkarren
2018-12-03 10:35:40 -08:00
committed by Lucien Greathouse
parent 26a7bb9746
commit 13a7c1ba81
7 changed files with 31 additions and 47 deletions

View File

@@ -17,7 +17,7 @@ pub struct Session {
pub session_id: SessionId,
pub message_queue: Arc<MessageQueue>,
pub rbx_session: Arc<Mutex<RbxSession>>,
fs_watcher: FsWatcher,
_fs_watcher: FsWatcher,
}
impl Session {
@@ -44,7 +44,7 @@ impl Session {
session_id,
message_queue,
rbx_session,
fs_watcher,
_fs_watcher: fs_watcher,
})
}