We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcd0348 commit 7f3e444Copy full SHA for 7f3e444
library/src/main/java/com/nextcloud/common/JSONRequestBody.kt
@@ -12,7 +12,10 @@ class JSONRequestBody() {
12
put(key, value)
13
}
14
15
- fun put(key: String, value: String) {
+ fun put(
16
+ key: String,
17
+ value: String
18
+ ) {
19
content[key] = value
20
21
@@ -28,4 +31,4 @@ class JSONRequestBody() {
28
31
companion object {
29
32
private val JSON_MEDIATYPE = "application/json; charset=utf-8".toMediaType()
30
33
-}
34
+}
0 commit comments