fix proguard issue with NotificationTypeAdapter (#1129)
This commit is contained in:
parent
ff58960801
commit
cffb33d705
2 changed files with 13 additions and 19 deletions
|
|
@ -1,18 +0,0 @@
|
|||
package com.keylesspalace.tusky.json
|
||||
|
||||
import com.google.gson.JsonDeserializationContext
|
||||
import com.google.gson.JsonDeserializer
|
||||
import com.google.gson.JsonElement
|
||||
import com.google.gson.JsonParseException
|
||||
import com.keylesspalace.tusky.entity.Notification
|
||||
|
||||
import java.lang.reflect.Type
|
||||
|
||||
class NotificationTypeAdapter : JsonDeserializer<Notification.Type> {
|
||||
|
||||
@Throws(JsonParseException::class)
|
||||
override fun deserialize(json: JsonElement, typeOfT: Type, context: JsonDeserializationContext): Notification.Type {
|
||||
return Notification.Type.byString(json.asString)
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue