remove Any?

This commit is contained in:
Adam Velebil 2023-01-26 16:12:53 +01:00
parent 7f0be1049a
commit 4149f99f88
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10

View File

@ -42,7 +42,7 @@ class CompatUtil(private val sdkVersion: Int) {
/**
* Wrapper class holding values computed by [CompatUtil]
*/
class CompatValue<T : Any?>() {
class CompatValue<T>() {
var value: T? = null
var isValid: Boolean = false