Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2a492f1b authored by Luca Stefani's avatar Luca Stefani
Browse files

Twelve: Fix-up provider preference store

Change-Id: I02702143674aae0c60ecafca911a9ff33fec115b
parent 967f2abd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ package org.lineageos.twelve.models

import android.os.Parcelable
import kotlinx.parcelize.Parcelize
import kotlinx.serialization.Serializable

/**
 * [Provider] identifier. Two instances are the same if they have the same [typeId] and [type].
@@ -15,6 +16,8 @@ import kotlinx.parcelize.Parcelize
 * @param typeId The ID of the provider relative to the [ProviderType]
 */
@Parcelize
@Serializable
@Suppress("PROVIDED_RUNTIME_TOO_LOW")
open class ProviderIdentifier(
    val type: ProviderType,
    val typeId: Long,