[KPM] Suppress unused serialVersionUID in Empty

KT-51386
This commit is contained in:
sebastian.sellmair
2022-02-21 09:41:49 +01:00
committed by Space
parent 207f510cca
commit 8b84ed4978
@@ -39,7 +39,8 @@ sealed class KotlinExternalModelContainer : Serializable {
override fun <T : Any> contains(key: KotlinExternalModelKey<T>): Boolean = false
override fun <T : Any> get(key: KotlinExternalModelKey<T>): T? = null
/* Necessary for stable serialization */
@Suppress("unused")
private const val serialVersionUID = 0L
}