File tree Expand file tree Collapse file tree
library/src/main/java/com/owncloud/android/lib/resources/files Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ import org.apache.jackrabbit.webdav.DavConstants
1919import org.apache.jackrabbit.webdav.MultiStatus
2020import org.apache.jackrabbit.webdav.client.methods.PropFindMethod
2121
22-
23- class ReadFolderRemoteOperation (private val remotePath : String ) : RemoteOperation<Any>() {
22+ class ReadFolderRemoteOperation (
23+ private val remotePath : String
24+ ) : RemoteOperation<Any>() {
2425 @Deprecated(" Deprecated in Java" )
2526 @Suppress(" TooGenericExceptionCaught" , " DEPRECATION" )
2627 override fun run (client : OwnCloudClient ): RemoteOperationResult <Any > {
@@ -57,7 +58,10 @@ class ReadFolderRemoteOperation(private val remotePath: String) : RemoteOperatio
5758
5859 fun isMultiStatus (status : Int ): Boolean = status == HttpStatus .SC_MULTI_STATUS
5960
60- private fun readData (remoteData : MultiStatus , client : OwnCloudClient ): ArrayList <Any > {
61+ private fun readData (
62+ remoteData : MultiStatus ,
63+ client : OwnCloudClient
64+ ): ArrayList <Any > {
6165 val responses = remoteData.responses
6266 val davUriPath = client.filesDavUri.encodedPath.orEmpty()
6367
You can’t perform that action at this time.
0 commit comments