1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-08 08:26:10 +00:00

Apply CR suggestions

This commit is contained in:
agarcia 2020-07-28 13:56:19 +02:00 committed by Abel García de Prada
parent 01c40aa532
commit e18fb2956e

View File

@ -37,7 +37,9 @@ class OCFileService(override val client: OwnCloudClient) : FileService {
isUserLoggedIn = isUserLogged
).execute(client)
override fun refreshFolder(remotePath: String): RemoteOperationResult<ArrayList<RemoteFile>> {
return ReadRemoteFolderOperation(remotePath = remotePath).execute(client)
}
override fun refreshFolder(remotePath: String): RemoteOperationResult<ArrayList<RemoteFile>> =
ReadRemoteFolderOperation(
remotePath = remotePath
).execute(client)
}