Skip to content

Commit 80244b6

Browse files
spotless
Signed-off-by: tobiasKaminsky <[email protected]>
1 parent a0c49a3 commit 80244b6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

library/src/main/java/com/nextcloud/android/lib/resources/recommendations/GetRecommendationsRemoteOperation.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ import org.apache.commons.httpclient.HttpStatus
1919
/**
2020
* Get recommendation of an user
2121
*/
22-
class GetRecommendationsRemoteOperation :
23-
OCSRemoteOperation<RecommendationResponse>() {
22+
class GetRecommendationsRemoteOperation : OCSRemoteOperation<RecommendationResponse>() {
2423
@Suppress("TooGenericExceptionCaught")
2524
override fun run(client: NextcloudClient): RemoteOperationResult<RecommendationResponse> {
2625
var result: RemoteOperationResult<RecommendationResponse>

library/src/main/java/com/nextcloud/android/lib/resources/recommendations/RecommendationResponse.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@
88

99
package com.nextcloud.android.lib.resources.recommendations
1010

11-
data class RecommendationResponse(val enabled: Boolean, val recommendations: ArrayList<Recommendation>)
11+
data class RecommendationResponse(
12+
val enabled: Boolean,
13+
val recommendations: ArrayList<Recommendation>
14+
)

library/src/main/java/com/owncloud/android/lib/resources/status/NextcloudVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class NextcloudVersion : OwnCloudVersion {
3838

3939
@JvmField
4040
val nextcloud_30 = NextcloudVersion(0x1E000000) // 30.0
41-
41+
4242
@JvmField
4343
val nextcloud_31 = NextcloudVersion(0x1F000000) // 31.0
4444
}

0 commit comments

Comments
 (0)