remove unnecessary impl AsRef<str> for FileID

This commit is contained in:
Jörn-Michael Miehe 2025-06-26 10:15:54 +00:00
parent e0c5b5517f
commit d8c48b74ca

View file

@ -18,12 +18,6 @@ impl fmt::Display for FileID {
}
}
impl AsRef<str> for FileID {
fn as_ref(&self) -> &str {
&self.0
}
}
impl TryFrom<String> for FileID {
type Error = error::Error;