mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-15 01:35:07 +08:00
Run ktlintFormat
This commit is contained in:
parent
23d2a290ab
commit
bfbcef60e9
@ -77,4 +77,3 @@ data class MegolmBackupAuthData(
|
||||
.signalableJSONDictionary()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -88,4 +88,3 @@ internal data class AuthParams(
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -77,8 +77,8 @@ internal class RuntimeJsonAdapterFactory<T>(
|
||||
override fun fromJson(reader: JsonReader): Any? {
|
||||
val peekedToken = reader.peek()
|
||||
if (peekedToken != JsonReader.Token.BEGIN_OBJECT) {
|
||||
throw JsonDataException("Expected BEGIN_OBJECT but was " + peekedToken
|
||||
+ " at path " + reader.path)
|
||||
throw JsonDataException("Expected BEGIN_OBJECT but was " + peekedToken +
|
||||
" at path " + reader.path)
|
||||
}
|
||||
val jsonValue = reader.readJsonValue()
|
||||
val jsonObject = jsonValue as Map<String, Any>?
|
||||
@ -91,13 +91,13 @@ internal class RuntimeJsonAdapterFactory<T>(
|
||||
override fun toJson(writer: JsonWriter, value: Any?) {
|
||||
val type: Class<*> = value!!.javaClass
|
||||
val label = typeToLabel[type]
|
||||
?: throw IllegalArgumentException("Expected one of "
|
||||
+ typeToLabel.keys
|
||||
+ " but found "
|
||||
+ value
|
||||
+ ", a "
|
||||
+ value.javaClass
|
||||
+ ". Register this subtype.")
|
||||
?: throw IllegalArgumentException("Expected one of " +
|
||||
typeToLabel.keys +
|
||||
" but found " +
|
||||
value +
|
||||
", a " +
|
||||
value.javaClass +
|
||||
". Register this subtype.")
|
||||
val adapter = labelToAdapter[label]!!
|
||||
val jsonValue = adapter.toJsonValue(value) as Map<String, Any>?
|
||||
val valueWithLabel: MutableMap<String, Any> = LinkedHashMap(1 + jsonValue!!.size)
|
||||
|
Loading…
Reference in New Issue
Block a user