mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 22:03:55 +01:00
docs: fix incorrect @param tag
This commit is contained in:
parent
f8abaac2e2
commit
89ecb95af0
1 changed files with 4 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue