diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-03-28 20:00:13 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-03-28 20:02:23 +0100 |
commit | 573f7217145d6658824abc36616aa7560bd7eb2d (patch) | |
tree | a5ce7d579496bcc448232642c1feda7e1c1c90f8 /components/util/debug_utils.rs | |
parent | ce3f777a12212604ec5cb56a0145f3cf8fca9ea7 (diff) | |
download | servo-573f7217145d6658824abc36616aa7560bd7eb2d.tar.gz servo-573f7217145d6658824abc36616aa7560bd7eb2d.zip |
Move to new io in util.
Diffstat (limited to 'components/util/debug_utils.rs')
-rw-r--r-- | components/util/debug_utils.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/util/debug_utils.rs b/components/util/debug_utils.rs index f7c02b8068b..8c1954c78ba 100644 --- a/components/util/debug_utils.rs +++ b/components/util/debug_utils.rs @@ -2,8 +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/. */ -use std::old_io as io; -use std::old_io::Writer; +use std::io::{self, Write}; use std::mem; use std::mem::size_of; use std::slice; |