From d8c48b74ca247039c093f0463e2907dafcffc88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Thu, 26 Jun 2025 10:15:54 +0000 Subject: [PATCH] remove unnecessary `impl AsRef for FileID` --- src/sharry/api/id.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/sharry/api/id.rs b/src/sharry/api/id.rs index 074b4fe..a951f82 100644 --- a/src/sharry/api/id.rs +++ b/src/sharry/api/id.rs @@ -18,12 +18,6 @@ impl fmt::Display for FileID { } } -impl AsRef for FileID { - fn as_ref(&self) -> &str { - &self.0 - } -} - impl TryFrom for FileID { type Error = error::Error;