server should look for config in the profile() dir rather than the personal() dir. removed personal() since it is no longer used.

This commit is contained in:
walker0643
2018-03-31 22:48:59 -04:00
parent 4c04f39685
commit 129e61a33a
5 changed files with 3 additions and 33 deletions

View File

@@ -23,18 +23,6 @@ std::string known_folder_path(const KNOWNFOLDERID& id)
return path;
}
const std::string& DataDirectories::personal()
{
if (_personal.empty())
_personal = known_folder_path(FOLDERID_Documents);
return _personal;
}
const std::string& DataDirectories::personal(const std::string& path)
{
_personal = path;
return _personal;
}
const std::string& DataDirectories::profile()
{
if (_profile.empty())