diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-04-09 13:30:46 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-04-10 12:56:46 +0000 |
| commit | 3fc20bd100edafd454c2f84ad187c4ba77588ba9 (patch) | |
| tree | 95a978f6708ce9c617761390d42bb1e54db6ca23 | |
| parent | 70ec5ba7b00d9f2913cf080599bdb02ebda742b5 (diff) | |
| download | mullvadvpn-3fc20bd100edafd454c2f84ad187c4ba77588ba9.tar.xz mullvadvpn-3fc20bd100edafd454c2f84ad187c4ba77588ba9.zip | |
Remove some unused imports on Android
| -rw-r--r-- | talpid-core/src/routing/android.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/talpid-core/src/routing/android.rs b/talpid-core/src/routing/android.rs index d21a982f5f..7c3ba70230 100644 --- a/talpid-core/src/routing/android.rs +++ b/talpid-core/src/routing/android.rs @@ -1,11 +1,5 @@ -use super::{ - subprocess::{Exec, RunExpr}, - NetNode, RequiredRoutes, -}; -use std::{ - collections::HashSet, - net::{IpAddr, Ipv4Addr}, -}; +use super::RequiredRoutes; +use std::net::{IpAddr, Ipv4Addr}; /// Stub error type for routing errors on Android. #[derive(Debug, err_derive::Error)] |
