remove an unused error handling file

This commit is contained in:
Tamo
2022-12-20 16:32:51 +01:00
parent d8fb506c92
commit 52aa34d984
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,
}
}
}