From 669b3d972e1f78ffeb44bfa4f9ae3c705b629a26 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 7 Nov 2021 00:24:22 +0000 Subject: [PATCH] Remove unintended debug trace --- Decoder/decodedtext.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Decoder/decodedtext.cpp b/Decoder/decodedtext.cpp index 8f7f95738..7fb3e290b 100644 --- a/Decoder/decodedtext.cpp +++ b/Decoder/decodedtext.cpp @@ -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);