cleaned up imports

This commit is contained in:
TyOverby 2014-11-13 10:31:29 -08:00
parent 2131a69ec8
commit 133a2bcd43
2 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,4 @@
use std::io::Buffer; use std::io::Reader; use std::io::IoError; use std::io::IoResult;
use std::io::OtherIoError;
use std::io::{Buffer, Reader, IoError, IoResult, OtherIoError};
use serialize::Decoder;
pub struct DecoderReader<'a, R: 'a> {

View File

@ -1,6 +1,4 @@
use std::io::Writer;
use std::io::IoError;
use std::io::IoResult;
use std::io::{Writer, IoError, IoResult};
use serialize::Encoder;
type EwResult = IoResult<()>;