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

Commit adaef8b5 authored by Kirill Timofeev's avatar Kirill Timofeev
Browse files

MessageQueue: add missing enum value to the '@StackNodeType'.

'STACK_NODE_QUITTING' constant was add in ag/33468905, however it
wasn't add to the list IntDefs of '@StackNodeType'. In this CL we
add it, to fix the linter warnings.

Test: Pure refactoring.
Flag: EXEMPT Pure refactoring.
Bug: N/A
Change-Id: I392f37d1b842d654eff1b342c6c4a6207c7c8eff
parent 6922ac47
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2524,7 +2524,8 @@ public final class MessageQueue {
        STACK_NODE_MESSAGE,
        STACK_NODE_ACTIVE,
        STACK_NODE_PARKED,
        STACK_NODE_TIMEDPARK})
        STACK_NODE_TIMEDPARK,
        STACK_NODE_QUITTING})
    @Retention(RetentionPolicy.SOURCE)
    private @interface StackNodeType {}