refactor cloud service triat

This commit is contained in:
appflowy
2022-01-10 23:45:59 +08:00
parent 46a3eb57fa
commit 855d396122
55 changed files with 1368 additions and 1204 deletions

View File

@ -446,7 +446,7 @@ fn invert_from_other<T: Attributes>(
tracing::trace!("invert op: {} [{}:{}]", operation, start, end);
let other_ops = DeltaIter::from_interval(other, Interval::new(start, end)).ops();
other_ops.into_iter().for_each(|other_op| match operation {
Operation::Delete(n) => {
Operation::Delete(_n) => {
// tracing::trace!("invert delete: {} by add {}", n, other_op);
base.add(other_op);
},