Fix compile issue from merge

This commit is contained in:
Paul Hauner
2022-03-01 14:43:55 +11:00
parent 8a6c32b06b
commit 2440614597

View File

@@ -40,10 +40,6 @@ pub enum ExecutionStatus {
}
impl ExecutionStatus {
pub fn is_valid(&self) -> bool {
matches!(self, ExecutionStatus::Valid(_))
}
pub fn is_execution_enabled(&self) -> bool {
!matches!(self, ExecutionStatus::Irrelevant(_))
}