conflicts: remove unused Conflict::set_{add,remove}()

These seem unused since 19fd8a917a.
This commit is contained in:
Martin von Zweigbergk 2023-06-13 13:18:42 -07:00 committed by Martin von Zweigbergk
parent d67f41e882
commit 7a8cabafc9

View file

@ -66,14 +66,6 @@ impl<T> Conflict<T> {
&self.adds
}
pub fn set_remove(&mut self, i: usize, value: T) {
self.removes[i] = value;
}
pub fn set_add(&mut self, i: usize, value: T) {
self.adds[i] = value;
}
/// Remove pairs of entries that match in the removes and adds.
pub fn simplify(mut self) -> Self
where