PlaylistCommands: remove redundant playlist_load_spl() call

This case is handled already by playlist_open_in_playlist_dir() (via
playlist_mapper_open()).  And the call didn't work anyway.
This commit is contained in:
Max Kellermann
2014-05-10 19:02:33 +02:00
parent fc1664d9fc
commit 0adcda387a
3 changed files with 1 additions and 56 deletions

View File

@@ -48,14 +48,4 @@ spl_save_queue(const char *name_utf8, const Queue &queue);
PlaylistResult
spl_save_playlist(const char *name_utf8, const playlist &playlist);
/**
* Loads a stored playlist file, and append all songs to the global
* playlist.
*/
bool
playlist_load_spl(struct playlist &playlist, PlayerControl &pc,
const char *name_utf8,
unsigned start_index, unsigned end_index,
Error &error);
#endif