Get rid of async prefix

All operations are async anyway.

FossilOrigin-Name: d18fbd29fb7caa8dc87cc31caee4f2b6e94b498032bae3bbce2b7c2510bc3575
This commit is contained in:
Jonathan Schleifer 2020-10-03 17:23:45 +00:00
parent c4a1bd7932
commit 1985cb9b46
5 changed files with 15 additions and 15 deletions

View file

@ -116,14 +116,14 @@ typedef void (^mtx_client_room_list_block_t)(
*
* @param block A block to call when logging out succeeded or failed
*/
- (void)asyncLogOutWithBlock: (mtx_client_logout_block_t)block;
- (void)logOutWithBlock: (mtx_client_logout_block_t)block;
/**
* @brief Fetches the list of joined rooms.
*
* @param block A block to call with the list of joined room
*/
- (void)asyncFetchRoomList: (mtx_client_room_list_block_t)block;
- (void)fetchRoomListWithBlock: (mtx_client_room_list_block_t)block;
@end
OF_ASSUME_NONNULL_END