diff --git a/src/Utils/String.hpp b/src/Utils/String.hpp index 11c9130a..51012e8a 100644 --- a/src/Utils/String.hpp +++ b/src/Utils/String.hpp @@ -77,12 +77,10 @@ namespace Utils int IsSpace(int c); std::string ToLower(std::string text); std::string ToUpper(std::string text); - bool EndsWith(const std::string& haystack, const std::string& needle); std::vector Split(const std::string& str, const char delim); void Replace(std::string& string, const std::string& find, const std::string& replace); - bool EndsWith(const std::string& haystack, const std::string& needle); bool StartsWith(const std::string& haystack, const std::string& needle); - std::vector Split(const std::string& str, const char delim); + bool EndsWith(const std::string& haystack, const std::string& needle); std::string& LTrim(std::string& str); std::string& RTrim(std::string& str);