Merge "TIF: Remove the uniqueness check for track ID from notifyTracksChanged" into nyc-dev

am: d1fe7ea84f

* commit 'd1fe7ea84fc5abeb495261f69e288851a3f3abd4':
  TIF: Remove the uniqueness check for track ID from notifyTracksChanged

Change-Id: I39d53fb179f836de9f74fdfeb3f1c88fe816e05f
This commit is contained in:
Jae Seo
2016-05-12 00:37:35 +00:00
committed by android-build-merger

View File

@@ -401,20 +401,8 @@ public abstract class TvInputService extends Service {
* with a different track ID.
*
* @param tracks A list which includes track information.
* @throws IllegalArgumentException if {@code tracks} contains redundant tracks.
*/
public void notifyTracksChanged(final List<TvTrackInfo> tracks) {
Set<String> trackIdSet = new HashSet<>();
for (TvTrackInfo track : tracks) {
String trackId = track.getId();
if (trackIdSet.contains(trackId)) {
throw new IllegalArgumentException("redundant track ID: " + trackId);
}
trackIdSet.add(trackId);
}
trackIdSet.clear();
// TODO: Validate the track list.
final List<TvTrackInfo> tracksCopy = new ArrayList<>(tracks);
executeOrPostRunnableOnMainThread(new Runnable() {
@MainThread