add server document

This commit is contained in:
appflowy
2022-01-12 17:08:50 +08:00
parent 3c819ead49
commit 0fba8d9195
56 changed files with 196 additions and 116 deletions

View File

@ -205,12 +205,12 @@ where
T: Attributes,
{
pub fn merge_or_new(&mut self, n: usize, attributes: T) -> Option<Operation<T>> {
tracing::trace!(
"merge_retain_or_new_op: len: {:?}, l: {} - r: {}",
n,
self.attributes,
attributes
);
// tracing::trace!(
// "merge_retain_or_new_op: len: {:?}, l: {} - r: {}",
// n,
// self.attributes,
// attributes
// );
if self.attributes == attributes {
self.n += n;
None