From 923760453230e58909225978da1f6ad14facf611 Mon Sep 17 00:00:00 2001 From: chaos Date: Thu, 21 Nov 2024 09:58:59 +0000 Subject: [PATCH] update --- journal/src/types.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/journal/src/types.rs b/journal/src/types.rs index 6fa5547..668ea3e 100644 --- a/journal/src/types.rs +++ b/journal/src/types.rs @@ -85,19 +85,6 @@ impl Add for StandardIngestionDose { } } -impl Add for StandardIngestionDose { - type Output = Self; - - fn add(self, _rhs: UnknownIngestionDose) -> Self::Output { - StandardIngestionDose { - dose: self.dose, - unit: self.unit, - contains_unknown: true, - estimation: self.estimation, - } - } -} - impl Mul for StandardIngestionDose { type Output = Self;