Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
timsat committed May 13, 2014
1 parent 49a2044 commit 998836b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Software/src/UpdatesProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ QList<UpdateInfo> UpdatesProcessor::readUpdates(uint lastReadId)
QXmlStreamReader xmlReader(_reply->readAll());

if (xmlReader.readNextStartElement()) {
qDebug() << xmlReader.name();
if (xmlReader.name() == "updates") {
readUpdates(&updates, &xmlReader);
QList<UpdateInfo>::iterator it = updates.begin();
Expand Down Expand Up @@ -138,7 +137,6 @@ bool UpdatesProcessor::isVersionMatches(const QString &predicate, const AppVersi
QList<UpdateInfo> * UpdatesProcessor::readUpdates(QList<UpdateInfo> *updates, QXmlStreamReader *xmlReader)
{
if (xmlReader->readNextStartElement()) {
qDebug() << xmlReader->name();
while (xmlReader->name() == "update") {
UpdateInfo updateInfo;
while(xmlReader->readNextStartElement()) {
Expand Down

0 comments on commit 998836b

Please sign in to comment.