Mercurial > public > mercurial-scm > hg
diff rust/hg-core/src/lib.rs @ 50532:a8531bd9210b
rust: remove an unused error variant DirstateMapError::EmptyPath
author | Arseniy Alekseyev <aalekseyev@janestreet.com> |
---|---|
date | Wed, 31 May 2023 18:18:52 +0100 |
parents | c15b415d1bff |
children | f50e71fdfcb4 |
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs Thu Apr 20 16:07:47 2023 -0400 +++ b/rust/hg-core/src/lib.rs Wed May 31 18:18:52 2023 +0100 @@ -63,7 +63,6 @@ #[derive(Debug, PartialEq)] pub enum DirstateMapError { PathNotFound(HgPathBuf), - EmptyPath, InvalidPath(HgPathError), } @@ -73,9 +72,6 @@ DirstateMapError::PathNotFound(_) => { f.write_str("expected a value, found none") } - DirstateMapError::EmptyPath => { - f.write_str("Overflow in dirstate.") - } DirstateMapError::InvalidPath(path_error) => path_error.fmt(f), } }