Skip to content

Commit d99c1b7

Browse files
committed
fix kt spotless
Signed-off-by: alperozturk <alper_ozturk@proton.me>
1 parent d68bb85 commit d99c1b7

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

app/src/main/java/com/nextcloud/model/ShareeEntry.kt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,12 @@ data class ShareeEntry(
6060
}
6161
}
6262

63-
private fun toContentValues(): ContentValues {
64-
return ContentValues().apply {
65-
put(ProviderTableMeta.OCSHARES_PATH, filePath)
66-
put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, accountOwner)
67-
put(ProviderTableMeta.OCSHARES_USER_ID, fileOwnerId)
68-
put(ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME, shareWithDisplayName)
69-
put(ProviderTableMeta.OCSHARES_SHARE_WITH, shareWithUserId)
70-
put(ProviderTableMeta.OCSHARES_SHARE_TYPE, shareType)
71-
}
63+
private fun toContentValues(): ContentValues = ContentValues().apply {
64+
put(ProviderTableMeta.OCSHARES_PATH, filePath)
65+
put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, accountOwner)
66+
put(ProviderTableMeta.OCSHARES_USER_ID, fileOwnerId)
67+
put(ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME, shareWithDisplayName)
68+
put(ProviderTableMeta.OCSHARES_SHARE_WITH, shareWithUserId)
69+
put(ProviderTableMeta.OCSHARES_SHARE_TYPE, shareType)
7270
}
7371
}

0 commit comments

Comments
 (0)