diff options
| author | Daniel Farina <daniel@fdr.io> | 2013-05-30 03:16:33 -0700 |
|---|---|---|
| committer | Daniel Farina <daniel@fdr.io> | 2013-05-30 13:08:18 -0700 |
| commit | aef1e10eba812b8144b0a4ac8d9b6e690c6e5ca7 (patch) | |
| tree | ceb3263dbb1b692ea87761c26435fb34a45e7695 /src/libstd/rt | |
| parent | a39429887a570f05c5da3e5dc8dfbcb6eea98f49 (diff) | |
| download | rust-aef1e10eba812b8144b0a4ac8d9b6e690c6e5ca7.tar.gz rust-aef1e10eba812b8144b0a4ac8d9b6e690c6e5ca7.zip | |
Remove unnecessary 'use' forms
Fix a laundry list of warnings involving unused imports that glutted up compilation output. There are more, but there seems to be some false positives (where 'remedy' appears to break the build), but this particular set of fixes seems safe.
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/task.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/rt/task.rs b/src/libstd/rt/task.rs index 12c683120c8..eb7282bae05 100644 --- a/src/libstd/rt/task.rs +++ b/src/libstd/rt/task.rs @@ -20,7 +20,6 @@ use prelude::*; use rt::local::Local; use rt::logging::StdErrLogger; use super::local_heap::LocalHeap; -use super::sched::Scheduler; pub struct Task { heap: LocalHeap, |
