fix(imports): Update TypeID import location to "any"

This commit is contained in:
Alex Whitney
2015-01-21 17:52:50 +00:00
parent b512e23a3e
commit dd2534a686
2 changed files with 2 additions and 4 deletions

View File

@@ -1,7 +1,6 @@
//! A collection of traits abstracting over Listeners and Streams.
use std::any::Any;
use std::any::{Any, TypeId};
use std::fmt;
use std::intrinsics::TypeId;
use std::io::{IoResult, IoError, ConnectionAborted, InvalidInput, OtherIoError,
Stream, Listener, Acceptor};
use std::io::net::ip::{SocketAddr, ToSocketAddr, Port};