Rename mpdIntent to intent.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122730041
This commit is contained in:
andrewlewis 2016-05-19 07:33:50 -07:00 committed by Oliver Woodman
parent 7d4c786e21
commit 7d9541848e

View File

@ -92,13 +92,13 @@ public class SampleChooserActivity extends Activity {
}
private void onSampleSelected(Sample sample) {
Intent mpdIntent = new Intent(this, PlayerActivity.class)
Intent intent = new Intent(this, PlayerActivity.class)
.setData(Uri.parse(sample.uri))
.putExtra(PlayerActivity.CONTENT_ID_EXTRA, sample.contentId)
.putExtra(PlayerActivity.CONTENT_TYPE_EXTRA, sample.type)
.putExtra(PlayerActivity.PROVIDER_EXTRA, sample.provider)
.putExtra(PlayerActivity.USE_EXTENSION_DECODERS, sample.useExtensionDecoders);
startActivity(mpdIntent);
startActivity(intent);
}
private static final class SampleAdapter extends BaseExpandableListAdapter {