feat(sdk): SlidingSyncList::handle_response must be pub(self).

This method must be only visible to the current module, not from the
upper/super module.

Note: `pub(self)` is equivalent to no `pub` at all.
This commit is contained in:
Ivan Enderlin
2023-03-20 10:00:24 +01:00
parent eefef9a81b
commit aa75d02ae3

View File

@@ -313,7 +313,7 @@ impl SlidingSyncList {
}
#[instrument(skip(self, ops), fields(name = self.name, ops_count = ops.len()))]
pub(super) fn handle_response(
fn handle_response(
&self,
maximum_number_of_rooms: u32,
ops: &Vec<v4::SyncOp>,