We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb6f59 commit b19c6a1Copy full SHA for b19c6a1
src/context/minimal.rs
@@ -40,7 +40,6 @@ impl Context for Minimal {
40
direction: Direction,
41
operands: &mut dyn CoordinateSet,
42
) -> Result<usize, Error> {
43
- const BAD_ID_MESSAGE: Error = Error::General("Minimal: Unknown operator id");
44
let op = self.operators.get(&op).ok_or(BAD_ID_MESSAGE)?;
45
Ok(op.apply(self, operands, direction))
46
}
0 commit comments