Skip to content

Commit

Permalink
feat: remove debugging artifact (#13)
Browse files Browse the repository at this point in the history
* feat: remove debugging artifact

Somehow, I forgot to remove this and we all let it slip through review. 🤦
  • Loading branch information
KSXGitHub authored Nov 25, 2024
1 parent b8f5d98 commit f370fd6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ fn error_code(kind: ErrorKind) -> Option<(&'static str, i16)> {
ErrorKind::AlreadyExists => ("EEXIST", 17),
ErrorKind::InvalidInput | ErrorKind::NotFound => ("ENOENT", 2),
ErrorKind::PermissionDenied => ("EPERM", 1),
_ => {
dbg!(kind);
return None;
}
_ => return None,
})
}

Expand Down

0 comments on commit f370fd6

Please sign in to comment.