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.
This commit is contained in:
parent
b9db7a5699
commit
08ec838334
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ impl TryFrom<String> for SpecifiedValue {
|
|||
|
||||
fn try_from(spec: String) -> Result<Self, Self::Error> {
|
||||
if spec.is_empty() {
|
||||
Ok(SpecifiedValue { spec: spec, value: None })
|
||||
Ok(SpecifiedValue::from_empty_spec())
|
||||
} else {
|
||||
spec.parse::<f64>().map(
|
||||
|value| SpecifiedValue { spec: spec, value: Some(value) }
|
||||
|
|
Loading…
Add table
Reference in a new issue