Refactor to remove old_orphan_check

This commit is contained in:
Mathijs van de Nes 2015-01-04 22:03:40 +01:00
parent e7c018310b
commit 05a4a14b9f
3 changed files with 1 additions and 10 deletions

View file

@ -2,7 +2,6 @@
#![feature(phase)]
#![feature(unsafe_destructor)]
#![feature(old_orphan_check)]
#![warn(missing_docs)]
#[phase(plugin, link)] extern crate log;

View file

@ -31,14 +31,6 @@ impl error::FromError<io::IoError> for ZipError
}
}
impl<T> error::FromError<(T, io::IoError)> for ZipError
{
fn from_error((_, err): (T, io::IoError)) -> ZipError
{
error::FromError::from_error(err)
}
}
impl error::Error for ZipError
{
fn description(&self) -> &str

View file

@ -223,7 +223,7 @@ impl<W: Writer+Seek> GenericZipWriter<W>
{
GenericZipWriter::Storer(w) => w,
GenericZipWriter::Deflater(w) => try!(w.finish()),
GenericZipWriter::Bzip2(w) => try!(w.into_inner()),
GenericZipWriter::Bzip2(w) => match w.into_inner() { Ok(r) => r, Err((_, err)) => try!(Err(err)) },
GenericZipWriter::Closed => try!(Err(io::standard_error(io::Closed))),
};