diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-01-31 14:36:05 +0100 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-02-11 14:48:34 -0800 |
commit | d5dd1d658e5d79701fb9d028479a0fcb26a033fa (patch) | |
tree | 0c243afe9d7d82695d16bd43d72e88600e4414ef /components/util/resource_files.rs | |
parent | bc6882bdefc318402a46ede1494eb79339705c21 (diff) | |
download | servo-d5dd1d658e5d79701fb9d028479a0fcb26a033fa.tar.gz servo-d5dd1d658e5d79701fb9d028479a0fcb26a033fa.zip |
Upgrade to rustc ba2f13ef0 2015-02-04
Diffstat (limited to 'components/util/resource_files.rs')
-rw-r--r-- | components/util/resource_files.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/util/resource_files.rs b/components/util/resource_files.rs index c5afbaeee56..2df0d059d95 100644 --- a/components/util/resource_files.rs +++ b/components/util/resource_files.rs @@ -2,14 +2,14 @@ * 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/. */ -use std::io::{File, IoResult}; -use std::path::Path; +use std::old_io::{File, IoResult}; +use std::old_path::Path; #[cfg(not(target_os = "android"))] use opts; #[cfg(not(target_os = "android"))] -use std::io::fs::PathExtensions; +use std::old_io::fs::PathExtensions; #[cfg(not(target_os = "android"))] use std::os; |