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

Commit 532a992e authored by Jaewan Kim's avatar Jaewan Kim
Browse files

MediaController: Fix annotation of Callback#onPlaybackStateChanged()

PlaybackState can be null and it's annotated as @Nullable in other
places. So we'd better to fix the annotation.

Bug: 77532207
Test: Run CtsMediaTestCases
Change-Id: I8974c6c99d9d188934f74775977631fb7b37e5d2
parent f0e74ae8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -531,7 +531,7 @@ public final class MediaController {
         *
         * @param state The new playback state of the session
         */
        public void onPlaybackStateChanged(@NonNull PlaybackState state) {
        public void onPlaybackStateChanged(@Nullable PlaybackState state) {
        }

        /**