currently it looks something like `fun <T: Any&...
# announcements
t
currently it looks something like
fun <T: Any> getStickyEvent(type: Class<T>): T?
you can make it reified
inline fun <reified T: Any> getStickyEvent(): T?
then you can use
T::class.java
as your replacement for the
type
argument you used before
🙃 1
m
I'll still read it, because as long as I do not understand you)