clear some warnings

This commit is contained in:
Oliver Gould
2017-07-20 18:29:36 +00:00
parent a62d3dda54
commit 44edd6a4d4
10 changed files with 18 additions and 39 deletions

View File

@@ -1,14 +1,8 @@
use {Peer, StreamId};
use error::{ConnectionError, Reason};
use {ConnectionError, Peer};
use error::Reason::*;
use error::User::*;
use proto::{FlowControlState, WindowSize};
use fnv::FnvHasher;
use ordermap::{Entry, OrderMap};
use std::hash::BuildHasherDefault;
use std::marker::PhantomData;
/// Represents the state of an H2 stream
///
/// ```not_rust