From 08ec838334a5fc1bfe7961ba7047c3b60c8e70fb Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Sat, 8 Mar 2025 15:11:37 -0800 Subject: [PATCH] Consolidate constructions from empty specification To reduce the potential for inconsistency, we should only have one piece of code that constructs a `SpecifiedValue` from the empty specification. --- app-proto/src/specified.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-proto/src/specified.rs b/app-proto/src/specified.rs index 0422291..cfe7fc3 100644 --- a/app-proto/src/specified.rs +++ b/app-proto/src/specified.rs @@ -34,7 +34,7 @@ impl TryFrom for SpecifiedValue { fn try_from(spec: String) -> Result { if spec.is_empty() { - Ok(SpecifiedValue { spec: spec, value: None }) + Ok(SpecifiedValue::from_empty_spec()) } else { spec.parse::().map( |value| SpecifiedValue { spec: spec, value: Some(value) }