Merge "Make MediaStore.Audio.Radio not instantiable"

This commit is contained in:
Matt Casey
2014-06-06 22:27:38 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 1 deletions

View File

@@ -24268,7 +24268,6 @@ package android.provider {
}
public static final class MediaStore.Audio.Radio {
ctor public MediaStore.Audio.Radio();
field public static final java.lang.String ENTRY_CONTENT_TYPE = "vnd.android.cursor.item/radio";
}

View File

@@ -1886,6 +1886,9 @@ public final class MediaStore {
* The MIME type for entries in this table.
*/
public static final String ENTRY_CONTENT_TYPE = "vnd.android.cursor.item/radio";
// Not instantiable.
private Radio() { }
}
}