Skip to content

Commit

Permalink
chore: Rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Nov 22, 2024
1 parent cb3b726 commit cf9fc44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ class TransferManager internal constructor(
}

/**
* Removes a transfer by its UUID.
* Delete a transfer by its UUID.
*
* @param transferUUID The UUID of the transfer to be removed.
*
* @throws CancellationException If the operation is cancelled.
* @throws RealmException An error has occurred with realm database
*/
@Throws(RealmException::class, CancellationException::class)
suspend fun removeTransfer(transferUUID: String) {
suspend fun deleteTransfer(transferUUID: String) {
transferController.deleteTransfer(transferUUID)
}

Expand Down

0 comments on commit cf9fc44

Please sign in to comment.