refactor(lib): fix remaining lint warnings (besides tests)

This commit is contained in:
Sean McArthur
2019-08-22 13:57:50 -07:00
parent 7b1d6d71b7
commit 49b12c415d
4 changed files with 9 additions and 29 deletions

View File

@@ -18,7 +18,7 @@ pub fn channel() -> (Signal, Watch) {
(
Signal {
drained_rx,
tx,
_tx: tx,
},
Watch {
drained_tx,
@@ -29,7 +29,7 @@ pub fn channel() -> (Signal, Watch) {
pub struct Signal {
drained_rx: mpsc::Receiver<Never>,
tx: watch::Sender<Action>,
_tx: watch::Sender<Action>,
}
pub struct Draining {