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

@ -106,7 +106,7 @@ typedef void (^mtx_request_block_t)(mtx_response_t _Nullable response,
*
* @param block The block to call once the request succeeded or failed
*/
- (void)asyncPerformWithBlock: (mtx_request_block_t)block;
- (void)performWithBlock: (mtx_request_block_t)block;
@end
OF_ASSUME_NONNULL_END