Remove unused feature gates and an unused import.

This commit is contained in:
Ms2ger 2015-05-05 19:05:23 +02:00
parent 475c27e966
commit d62e1c9afb
2 changed files with 1 additions and 3 deletions

View file

@ -10,7 +10,6 @@
#![feature(plugin)]
#![feature(rustc_private)]
#![feature(std_misc)]
#![feature(unboxed_closures)]
#![plugin(regex_macros)]

View file

@ -7,7 +7,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(collections, exit_status, fs_walk, io, path, path_ext, slice_patterns, std_misc, test)]
#![feature(collections, exit_status, fs_walk, path_ext, slice_patterns, test)]
#[macro_use] extern crate bitflags;
extern crate png;
extern crate test;
@ -19,7 +19,6 @@ use std::fs::{PathExt, File, walk_dir};
use std::io::{self, Read, Result};
use std::path::{Path, PathBuf};
use std::process::{Command, Stdio};
use std::thunk::Thunk;
use test::{AutoColor, DynTestName, DynTestFn, TestDesc, TestOpts, TestDescAndFn, ShouldPanic};
use test::run_tests_console;
use url::Url;