diff options
Diffstat (limited to 'src/opensearch/suggestionparser.cpp')
-rw-r--r-- | src/opensearch/suggestionparser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opensearch/suggestionparser.cpp b/src/opensearch/suggestionparser.cpp index 0e390d99..6b467353 100644 --- a/src/opensearch/suggestionparser.cpp +++ b/src/opensearch/suggestionparser.cpp @@ -107,7 +107,7 @@ ResponseList JSONParser::parse(const QByteArray &resp) if(response.isEmpty()) { - kDebug() << "RESPONSE IS EMPTY"; + // RESPONSE IS EMPTY return ResponseList(); } @@ -115,14 +115,14 @@ ResponseList JSONParser::parse(const QByteArray &resp) || !response.endsWith(QL1C(']')) ) { - kDebug() << "RESPONSE is NOT well FORMED"; + // RESPONSE is NOT well FORMED return ResponseList(); } // Evaluate the JSON response using QtScript. if(!m_reader.canEvaluate(response)) { - kDebug() << "m_reader cannot evaluate the response"; + // m_reader cannot evaluate the response return ResponseList(); } @@ -130,7 +130,7 @@ ResponseList JSONParser::parse(const QByteArray &resp) if(!responseParts.property(1).isArray()) { - kDebug() << "RESPONSE is not an array"; + // RESPONSE is not an array return ResponseList(); } |