fix lint issue

This commit is contained in:
David Luhmer 2019-05-11 20:21:46 +02:00
parent 7c02bf90a1
commit 70c06e7590

View file

@ -524,6 +524,13 @@ public class PodcastPlaybackService extends MediaBrowserServiceCompat {
pause(); pause();
} }
@Override
public void onPlayFromSearch(String query, Bundle extras) {
Log.d(TAG, "onPlayFromSearch() called with: query = [" + query + "], extras = [" + extras + "]");
// TODO Implement this
super.onPlayFromSearch(query, extras);
}
@Override @Override
public void onCommand(String command, Bundle extras, ResultReceiver cb) { public void onCommand(String command, Bundle extras, ResultReceiver cb) {
if (command.equals(PLAYBACK_SPEED_FLOAT)) { if (command.equals(PLAYBACK_SPEED_FLOAT)) {