From 84b279de95dd0c89cecf7dec45936bb6bc48f8cd Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 5 Sep 2016 16:22:49 +0200 Subject: [PATCH] Remove Into for StoreId --- libimagstore/src/storeid.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index c9677166..652b926f 100644 --- a/libimagstore/src/storeid.rs +++ b/libimagstore/src/storeid.rs @@ -103,16 +103,6 @@ impl StoreId { } -impl Into for StoreId { - - fn into(self) -> PathBuf { - let mut base = self.base.unwrap_or(PathBuf::from("/")); - base.push(self.id); - base - } - -} - impl Display for StoreId { fn fmt(&self, fmt: &mut Formatter) -> RResult<(), FmtError> {