diff --git a/lib/src/conflicts.rs b/lib/src/conflicts.rs index 3917d4f51..81b2298f0 100644 --- a/lib/src/conflicts.rs +++ b/lib/src/conflicts.rs @@ -66,14 +66,6 @@ impl Conflict { &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