1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-13 10:49:26 +00:00

remove unused imports

This commit is contained in:
Nikolay Kim 2017-11-24 22:19:06 -08:00
parent 7569036dd4
commit 940bc08aba
2 changed files with 1 additions and 6 deletions

View file

@ -1,5 +1,3 @@
#![allow(unused_imports, dead_code)]
use std::rc::Rc;
use std::string::ToString;
use std::collections::HashMap;

View file

@ -1,8 +1,5 @@
//! Middlewares
#![allow(unused_imports, dead_code)]
use std::rc::Rc;
use futures::{Async, Future, Poll};
use futures::Future;
use error::Error;
use httprequest::HttpRequest;