fix lint issue
This commit is contained in:
parent
7c02bf90a1
commit
70c06e7590
1 changed files with 7 additions and 0 deletions
|
@ -524,6 +524,13 @@ public class PodcastPlaybackService extends MediaBrowserServiceCompat {
|
|||
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
|
||||
public void onCommand(String command, Bundle extras, ResultReceiver cb) {
|
||||
if (command.equals(PLAYBACK_SPEED_FLOAT)) {
|
||||
|
|
Loading…
Reference in a new issue