Remove unused stringutils methods

This commit is contained in:
Lars Toenning
2022-04-25 19:32:42 +02:00
committed by Mat Sutcliffe
parent beeabb51c2
commit 0c1a5a5c97
10 changed files with 99 additions and 163 deletions

View File

@@ -569,7 +569,7 @@ namespace BlackMisc::Simulation::XPlane
{
++lineNum;
QString line = in.readLine();
auto tokens = splitString(line, [](QChar c) { return c.isSpace(); });
auto tokens = line.split(' ');
if (!tokens.empty())
{
auto it = commands.find(tokens[0]);
@@ -615,7 +615,7 @@ namespace BlackMisc::Simulation::XPlane
++lineNum;
QString line = in.readLine();
if (line.isEmpty() || line[0] == '#') continue;
auto tokens = splitString(line, [](QChar c) { return c.isSpace(); });
auto tokens = line.split(' ');
if (!tokens.empty())
{
auto it = commands.find(tokens[0]);