Drop the is_present
utility method
This commit is contained in:
parent
309b0881df
commit
c58fed073d
2 changed files with 1 additions and 8 deletions
|
@ -269,7 +269,7 @@ impl Assembly {
|
|||
console::log_1(&JsValue::from(
|
||||
format!("Updated constraint with subjects ({}, {})", subjects.0, subjects.1)
|
||||
));
|
||||
if set_point.with(|set_pt| set_pt.is_present()) {
|
||||
if set_point.with(|set_pt| matches!(set_pt, Present { .. })) {
|
||||
self.realize();
|
||||
}
|
||||
});
|
||||
|
|
|
@ -26,13 +26,6 @@ impl SpecifiedValue {
|
|||
Present { spec, .. } => spec.clone()
|
||||
}
|
||||
}
|
||||
|
||||
pub fn is_present(&self) -> bool {
|
||||
match self {
|
||||
Absent => false,
|
||||
Present { .. } => true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// we can try to turn a specification string into a `SpecifiedValue`. if the
|
||||
|
|
Loading…
Add table
Reference in a new issue