diff options
author | Zbynek Winkler <zbynek.winkler@gmail.com> | 2016-04-20 12:50:42 +0200 |
---|---|---|
committer | Zbynek Winkler <zbynek.winkler@gmail.com> | 2016-04-22 22:20:06 +0200 |
commit | 41c293293b57abc5c55b5396f8cf9d38da11e402 (patch) | |
tree | 6d532c3a1dbd340566d22f0036169f7f1dd0487f /components/util | |
parent | b021874ba08f1d207e70ddaf32b374c9533e29f0 (diff) | |
download | servo-41c293293b57abc5c55b5396f8cf9d38da11e402.tar.gz servo-41c293293b57abc5c55b5396f8cf9d38da11e402.zip |
Remove references to unused crates.
The cleanup is based on info from using "-W unused-extern-crates".
Diffstat (limited to 'components/util')
-rw-r--r-- | components/util/resource_files.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/util/resource_files.rs b/components/util/resource_files.rs index 06e8a428361..58d6a17441c 100644 --- a/components/util/resource_files.rs +++ b/components/util/resource_files.rs @@ -2,6 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#[cfg(not(target_os = "android"))] use std::env; use std::fs::File; use std::io::{self, Read}; |