Remove unnecessary qDebug

This commit is contained in:
Ryan Huffman 2014-07-01 20:05:30 -07:00
parent ccc638d8c1
commit f0c013960d

View file

@ -56,7 +56,6 @@ void UserLocation::requestRename(const QString& newName) {
void UserLocation::handleRenameResponse(const QJsonObject& responseData) {
_updating = false;
qDebug() << responseData;
QJsonValue status = responseData["status"];
if (!status.isUndefined() && status.toString() == "success") {
QString updatedName = responseData["data"].toObject()["name"].toString();