summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-20 13:56:10 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-24 12:45:09 +0000
commitf102b1fdee47f9604dcb5a5214dbe885cd1f3874 (patch)
treee5a0e7d81f049d36c1c426100af01864c1b8d324
parent41177fcb3f196916bbd8d178b39324161e3f06df (diff)
downloadmullvadvpn-f102b1fdee47f9604dcb5a5214dbe885cd1f3874.tar.xz
mullvadvpn-f102b1fdee47f9604dcb5a5214dbe885cd1f3874.zip
Remove `command_sender` method
-rw-r--r--mullvad-daemon/src/lib.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs
index 595320840c..3af174e192 100644
--- a/mullvad-daemon/src/lib.rs
+++ b/mullvad-daemon/src/lib.rs
@@ -565,11 +565,6 @@ where
Ok(daemon)
}
- /// Retrieve a channel for sending daemon commands.
- pub fn command_sender(&self) -> DaemonCommandSender {
- DaemonCommandSender::new(self.tx.clone())
- }
-
/// Consume the `Daemon` and run the main event loop. Blocks until an error happens or a
/// shutdown event is received.