From f2bf65a40bfc3807adf14e983f870b0b75b1d074 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 11 Oct 2022 21:42:24 -0700 Subject: fix(tvix/eval): remove overlapping instances I broke the build. I didn't understand that before hitting "submit" you need to re-test your changes on latest HEAD (and that CI doesn't do that for you); I failed to re-test cl/6912 following the merge of cl/6907. This commit fixes the build by removing the overlapping instances. Change-Id: I2a720d2c60cc7103b350f78102a8998f93bac828 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6965 Tested-by: BuildkiteCI Autosubmit: Adam Joseph Reviewed-by: tazjin --- tvix/eval/src/value/mod.rs | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'tvix/eval/src') diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index a547ddd4dd..b8b46b444f 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -381,18 +381,6 @@ impl From for Value { } } -impl From<&str> for Value { - fn from(val: &str) -> Self { - Self::String(val.into()) - } -} - -impl From for Value { - fn from(val: String) -> Self { - Self::String(val.into()) - } -} - impl From for Value { fn from(path: PathBuf) -> Self { Self::Path(path) -- cgit 1.4.1