remove an unused error handling file

This commit is contained in:
Tamo 2022-12-20 16:32:51 +01:00
parent d8fb506c92
commit 52aa34d984
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
3 changed files with 4 additions and 47 deletions

View file

@ -462,8 +462,7 @@ impl ErrorCode for io::Error {
Some(5) => Code::IoError,
Some(24) => Code::TooManyOpenFiles,
Some(28) => Code::NoSpaceLeftOnDevice,
e => todo!("missed something asshole {:?}", e),
// e => Code::Internal,
_ => Code::Internal,
}
}
}