Skip to content

Commit 7f3e444

Browse files
committed
Fix lint
Signed-off-by: ZetaTom <[email protected]>
1 parent dcd0348 commit 7f3e444

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

library/src/main/java/com/nextcloud/common/JSONRequestBody.kt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ class JSONRequestBody() {
1212
put(key, value)
1313
}
1414

15-
fun put(key: String, value: String) {
15+
fun put(
16+
key: String,
17+
value: String
18+
) {
1619
content[key] = value
1720
}
1821

@@ -28,4 +31,4 @@ class JSONRequestBody() {
2831
companion object {
2932
private val JSON_MEDIATYPE = "application/json; charset=utf-8".toMediaType()
3033
}
31-
}
34+
}

0 commit comments

Comments
 (0)