| Index: src/shared/Utils.cpp |
| diff --git a/src/shared/Utils.cpp b/src/shared/Utils.cpp |
| index 7a14db81c33c4b8a426344f45549afc4b902df1f..eca70f51e9ffd47cc75fb8a10e75442845e65b8c 100644 |
| --- a/src/shared/Utils.cpp |
| +++ b/src/shared/Utils.cpp |
| @@ -145,13 +145,4 @@ std::wstring GetAppDataPath() |
| ::CreateDirectoryW(appDataPath.c_str(), NULL); |
| } |
| return appDataPath; |
| -} |
| - |
| -void ReplaceString(std::wstring& input, const std::wstring placeholder, const std::wstring replacement) |
| -{ |
| - size_t replaceStart = input.find(placeholder); |
| - if (replaceStart != std::string::npos) |
| - { |
| - input.replace(replaceStart, placeholder.length(), replacement); |
| - } |
| -} |
| +} |