Refactor to remove old_orphan_check
This commit is contained in:
parent
e7c018310b
commit
05a4a14b9f
3 changed files with 1 additions and 10 deletions
|
@ -2,7 +2,6 @@
|
|||
|
||||
#![feature(phase)]
|
||||
#![feature(unsafe_destructor)]
|
||||
#![feature(old_orphan_check)]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
#[phase(plugin, link)] extern crate log;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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))),
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue