Skip to content

Commit bc5a5fb

Browse files
committed
kotlin spotless check
Signed-off-by: alperozturk96 <alper_ozturk@proton.me>
1 parent 4b6276a commit bc5a5fb

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

library/src/main/java/com/owncloud/android/lib/resources/files/ReadFolderRemoteOperation.kt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ import org.apache.jackrabbit.webdav.DavConstants
1919
import org.apache.jackrabbit.webdav.MultiStatus
2020
import 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

0 commit comments

Comments
 (0)