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

Commit df1e10dd authored by Dongwon Kang's avatar Dongwon Kang
Browse files

TIF: Add @NonNull for Programs.Genres.encode/decode

Bug: 27292029
Change-Id: Ib74f6383f3b0880179b51268e730ea8e88ab20c3
parent f8df4d0d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.media.tv;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.content.ComponentName;
@@ -1332,7 +1333,7 @@ public final class TvContract {
             * @return an encoded genre string that can be inserted into the
             *         {@link #COLUMN_BROADCAST_GENRE} or {@link #COLUMN_CANONICAL_GENRE} column.
             */
            public static String encode(String... genres) {
            public static String encode(@NonNull String... genres) {
                StringBuilder sb = new StringBuilder();
                String separator = "";
                for (String genre : genres) {
@@ -1367,7 +1368,7 @@ public final class TvContract {
             *            {@link #COLUMN_BROADCAST_GENRE} or {@link #COLUMN_CANONICAL_GENRE} column.
             * @return genre strings.
             */
            public static String[] decode(String genres) {
            public static String[] decode(@NonNull String genres) {
                if (genres.isEmpty()) {
                    return EMPTY_STRING_ARRAY;
                }