QGenericUnixThemesDBusListener: Remove stray qDebug()

Remove a stray qDebug() statement, that was forgotten in the source.

Change-Id: I5c413b4356f05570474fa2a0d6ad661785c818b0
Reviewed-by: Liang Qi <liang.qi@qt.io>
(cherry picked from commit 31da99954282908fc896989344c4be104ae6e62f)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Axel Spoerl 2023-07-18 10:39:59 +02:00 committed by Qt Cherry-pick Bot
parent e6b1d99ff2
commit 163a97fdd2

View File

@ -276,7 +276,6 @@ void QGenericUnixThemeDBusListener::loadJson(const QString &fileName)
QJsonParseError error;
QJsonDocument doc = QJsonDocument::fromJson(file.readAll(), &error);
CHECK((error.error == QJsonParseError::NoError), error.errorString());
qDebug() << doc;
CHECK(doc.isObject(), "Parse Error: Expected root object" << s_root);
const QJsonObject &root = doc.object();