From 6e5db89c9a276e1ab895b1172c87538ebdf4ae58 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sat, 26 Mar 2022 11:47:56 -0400 Subject: [PATCH] Dont convert into floz during normalization. --- recipes/src/unit.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/recipes/src/unit.rs b/recipes/src/unit.rs index 03115a1..f31333a 100644 --- a/recipes/src/unit.rs +++ b/recipes/src/unit.rs @@ -163,9 +163,6 @@ impl VolumeMeasure { if (ml / CUP) >= ONE && !metric { return self.clone().into_cup(); } - if (ml / FLOZ) >= ONE && !metric { - return self.clone().into_floz(); - } if (ml / TBSP) >= ONE && !metric { return self.clone().into_tbsp(); }