Remove unintended debug trace

This commit is contained in:
Bill Somerville 2021-11-07 00:24:22 +00:00
parent 68dc11b291
commit 669b3d972e
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 1 additions and 3 deletions

View File

@ -85,9 +85,7 @@ QStringList DecodedText::messageWords () const
// extract up to the first four message words
QString t=message_;
if(t.left(4)=="TU; ") t=message_.mid(4,-1);
auto res = tokens_re.match(t).capturedTexts();
qDebug () << "captured texts:" << res;
return res;
return tokens_re.match(t).capturedTexts();
}
// simple word split for free text messages
auto words = message_.split (' ', SkipEmptyParts);