Remove extra argument labels

This commit is contained in:
ismailgulek 2021-10-05 15:17:22 +03:00
parent acd01240a3
commit 72b96af055
No known key found for this signature in database
GPG key ID: E96336D42D9470A9
2 changed files with 2 additions and 2 deletions

View file

@ -457,7 +457,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
}
private func notifyDataChange(on fetcher: MXRoomListDataFetcher) {
multicastDelegate.invoke(invocation: { $0.serviceDidChangeData(self) })
multicastDelegate.invoke({ $0.serviceDidChangeData(self) })
}
deinit {

View file

@ -164,7 +164,7 @@ public class MockRecentsListService: NSObject, RecentsListServiceProtocol {
}
private func notifyDataChange() {
multicastDelegate.invoke(invocation: { $0.serviceDidChangeData(self) })
multicastDelegate.invoke({ $0.serviceDidChangeData(self) })
}
}