utils: split: Rename all splitBy*() variants to split()

This commit is contained in:
2021-04-17 12:41:22 +02:00
parent b995362d1f
commit 4dc688f9eb
5 changed files with 13 additions and 11 deletions

View File

@@ -86,7 +86,7 @@ std::string Parser::processLink(const PageDao &pageDao, UrlProvider &urlProvider
std::string linktag = match.str(1);
std::string inside = match.str(2);
std::vector<std::string> splitted = utils::splitByChar(inside, '|');
std::vector<std::string> splitted = utils::split(inside, '|');
HtmlLink htmllink;
if(splitted.size() == 2)
{