docs: fix incorrect @param tag

This commit is contained in:
Rsedp8 2025-05-24 18:47:25 +02:00
parent f8abaac2e2
commit 89ecb95af0

View file

@ -199,10 +199,11 @@ class UploadRepository @Inject constructor(
}
/**
* Query the RemoteDataSource for image duplicity check
* Queries the RemoteDataSource to check if the image is a duplicate.
*
* @param filePath file to be checked
* @return IMAGE_DUPLICATE or IMAGE_OK
* @param originalFilePath The original file to be checked.
* @param modifiedFilePath The modified version of the file (if any).
* @return IMAGE_DUPLICATE if the image already exists, otherwise IMAGE_OK.
*/
fun checkDuplicateImage(originalFilePath: Uri?, modifiedFilePath: Uri?): Single<Int> {
return uploadModel.checkDuplicateImage(originalFilePath, modifiedFilePath)