From 8c1ebd4235d323801bb7866541d4d04d895d3c69 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Fri, 8 Nov 2013 15:10:51 +0100 Subject: [PATCH] Remove debug output Some applications (like e.g. the Tweet Search example) prints out a ton of these "scanEscape" messages to the console. Change-Id: Ibfa9c4780705167693c7fb6af8cad1e312549a5f Reviewed-by: Simon Hausmann Reviewed-by: Lars Knoll --- src/qml/jsruntime/qv4jsonobject.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qml/jsruntime/qv4jsonobject.cpp b/src/qml/jsruntime/qv4jsonobject.cpp index 2fa5a7c..458b46b 100644 --- a/src/qml/jsruntime/qv4jsonobject.cpp +++ b/src/qml/jsruntime/qv4jsonobject.cpp @@ -612,7 +612,6 @@ bool JsonParser::parseString(QString *string) lastError = QJsonParseError::IllegalEscapeSequence; return false; } - qDebug() << "scanEscape" << hex << ch; if (QChar::requiresSurrogates(ch)) { *string += QChar(QChar::highSurrogate(ch)); *string += QChar(QChar::lowSurrogate(ch)); -- 2.7.4