about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-06-11 23:54:05 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-06-14 23:15:42 -0400
commit585f5f7f794c5f181ff351cb82a4c692cf61caa3 (patch)
tree68895a12b0ada601a33a59760686c89b2f0be9fb /src/librustpkg
parent38e05747b5cf75671b7fb7c634eba8fe56f9eb39 (diff)
downloadrust-585f5f7f794c5f181ff351cb82a4c692cf61caa3.tar.gz
rust-585f5f7f794c5f181ff351cb82a4c692cf61caa3.zip
add IteratorUtil to the prelude
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/path_util.rs1
-rw-r--r--src/librustpkg/rustpkg.rc1
-rw-r--r--src/librustpkg/version.rs1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/librustpkg/path_util.rs b/src/librustpkg/path_util.rs
index c039eeacbe4..964e1a54770 100644
--- a/src/librustpkg/path_util.rs
+++ b/src/librustpkg/path_util.rs
@@ -17,7 +17,6 @@ pub use target::{OutputType, Main, Lib, Test, Bench, Target, Build, Install};
 use core::libc::consts::os::posix88::{S_IRUSR, S_IWUSR, S_IXUSR};
 use core::os::mkdir_recursive;
 use core::os;
-use core::iterator::IteratorUtil;
 
 /// Returns the value of RUST_PATH, as a list
 /// of Paths. In general this should be read from the
diff --git a/src/librustpkg/rustpkg.rc b/src/librustpkg/rustpkg.rc
index f9dc9a6160f..2a851322356 100644
--- a/src/librustpkg/rustpkg.rc
+++ b/src/librustpkg/rustpkg.rc
@@ -29,7 +29,6 @@ extern mod syntax;
 
 use core::prelude::*;
 use core::*;
-use core::iterator::IteratorUtil;
 pub use core::path::Path;
 use core::hashmap::HashMap;
 use rustc::driver::{driver, session};
diff --git a/src/librustpkg/version.rs b/src/librustpkg/version.rs
index 0900d93e498..0601c33b25e 100644
--- a/src/librustpkg/version.rs
+++ b/src/librustpkg/version.rs
@@ -15,7 +15,6 @@ extern mod std;
 
 use extra::semver;
 use core::prelude::*;
-use core::iterator::IteratorUtil;
 use core::{char, os, result, run, str};
 use package_path::RemotePath;
 use extra::tempfile::mkdtemp;