Dont convert into floz during normalization.

This commit is contained in:
Jeremy Wall 2022-03-26 11:47:56 -04:00
parent 8338ab6bda
commit 6e5db89c9a

View File

@ -163,9 +163,6 @@ impl VolumeMeasure {
if (ml / CUP) >= ONE && !metric { if (ml / CUP) >= ONE && !metric {
return self.clone().into_cup(); return self.clone().into_cup();
} }
if (ml / FLOZ) >= ONE && !metric {
return self.clone().into_floz();
}
if (ml / TBSP) >= ONE && !metric { if (ml / TBSP) >= ONE && !metric {
return self.clone().into_tbsp(); return self.clone().into_tbsp();
} }