Fix warnings around ChangeProcessor

This commit is contained in:
Lucien Greathouse
2019-09-24 18:07:33 -07:00
parent 7b7c978db6
commit 125c9767f1
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ use crate::{
pub struct ChangeProcessor {
shutdown_sender: Sender<()>,
thread_handle: JoinHandle<()>,
_thread_handle: JoinHandle<()>,
}
impl ChangeProcessor {
@@ -34,7 +34,7 @@ impl ChangeProcessor {
Self {
shutdown_sender,
thread_handle,
_thread_handle: thread_handle,
}
}