diff --git a/src/runtime/connector.rs b/src/runtime/connector.rs index 0b95f378e22907f6cf3479bc9bd7a60176ac6d48..70f9df50e1b80d8f0245a4e99e2c50114a5062e3 100644 --- a/src/runtime/connector.rs +++ b/src/runtime/connector.rs @@ -100,11 +100,11 @@ impl<'a> RunContext for ConnectorRunContext<'a>{ }; } - fn fires(&mut self, port: PortId) -> Option { - todo!("Remove fires() now"); - let port_id = PortIdLocal::new(port.id); - let annotation = self.consensus.get_annotation(self.branch_id, port_id); - return annotation.expected_firing.map(|v| Value::Bool(v)); + fn fires(&mut self, _port: PortId) -> Option { + todo!("Remove fires() now") + // let port_id = PortIdLocal::new(port.id); + // let annotation = self.consensus.get_annotation(self.branch_id, port_id); + // return annotation.expected_firing.map(|v| Value::Bool(v)); } fn created_channel(&mut self) -> Option<(Value, Value)> {