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

Bug: 27292029
Change-Id: Ib74f6383f3b0880179b51268e730ea8e88ab20c3
This commit is contained in:
Dongwon Kang
2016-02-23 10:30:51 -08:00
parent f8df4d0d43
commit df1e10ddac

View File

@@ -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;
}