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

Commit fc2a3e3a authored by Govinda Wasserman's avatar Govinda Wasserman
Browse files

Change ASSISTANT_SESSION_UNKNOWN ID

ASSISTANT_SESSION_UNKNOWN is a default value that is not expected to be
used, therefore it does not need to use a reserved value.

Test: Tested locally
BUG: 162956422
FIX: 162956422
Change-Id: Ifa6ae42eb883915d9db3e83566ac71cf02e007f7
parent 143f714e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ import com.android.internal.logging.UiEventLogger

enum class AssistantSessionEvent(private val id: Int) : UiEventLogger.UiEventEnum {
    @UiEvent(doc = "Unknown assistant session event")
    ASSISTANT_SESSION_UNKNOWN(523),
    ASSISTANT_SESSION_UNKNOWN(0),

    @UiEvent(doc = "Assistant session dismissed due to timeout")
    ASSISTANT_SESSION_TIMEOUT_DISMISS(524),