Mapper: remove empty function mapper_finish()

This commit is contained in:
Max Kellermann 2019-02-05 23:01:09 +01:00
parent 92ec3f0881
commit feb5ff9bd2
3 changed files with 0 additions and 12 deletions

View File

@ -655,10 +655,6 @@ mpd_main_after_fork(const ConfigData &raw_config, const Config &config)
playlist_list_global_finish();
#ifdef ENABLE_DATABASE
mapper_finish();
#endif
DeinitFS();
return EXIT_SUCCESS;

View File

@ -58,11 +58,6 @@ mapper_init(AllocatedPath &&_playlist_dir)
mapper_set_playlist_dir(std::move(_playlist_dir));
}
void
mapper_finish() noexcept
{
}
#ifdef ENABLE_DATABASE
AllocatedPath

View File

@ -37,9 +37,6 @@ class AllocatedPath;
void
mapper_init(AllocatedPath &&playlist_dir);
void
mapper_finish() noexcept;
#ifdef ENABLE_DATABASE
/**