Migrate "room" from "kapt" to "ksp" (#3777)
- Add ksp plugin - Switch room to use ksp instead of kapt - `ArrayList` -> `List` in a few places to fix errors about unbound generics
This commit is contained in:
parent
1f7a5f626d
commit
25376170c2
7 changed files with 12 additions and 13 deletions
|
|
@ -19,7 +19,6 @@ import android.text.SpannableStringBuilder
|
|||
import android.text.style.URLSpan
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import com.keylesspalace.tusky.util.parseAsMastodonHtml
|
||||
import java.util.ArrayList
|
||||
import java.util.Date
|
||||
|
||||
data class Status(
|
||||
|
|
@ -42,7 +41,7 @@ data class Status(
|
|||
val sensitive: Boolean,
|
||||
@SerializedName("spoiler_text") val spoilerText: String,
|
||||
val visibility: Visibility,
|
||||
@SerializedName("media_attachments") val attachments: ArrayList<Attachment>,
|
||||
@SerializedName("media_attachments") val attachments: List<Attachment>,
|
||||
val mentions: List<Mention>,
|
||||
val tags: List<HashTag>?,
|
||||
val application: Application?,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue