This is bug or feature? I have class: ``` class Gs...
# announcements
n
This is bug or feature? I have class:
Copy code
class GsonSerializer<T>(): Serializer<T> {
  ….
  override fun unserialize(json: String, default: T) {
    val type = object : TypeToken<T>() {}.type  //<— cannot find local variable with debugger
    val value: T = gson.fromJsonType<T>(json, type) //<— LinkedTreeMap
    return value //<— LinkedTreeMap
  }
}