From f0c013960df8fe1267be7bc7940239b4820f0d3e Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 1 Jul 2014 20:05:30 -0700 Subject: [PATCH] Remove unnecessary qDebug --- interface/src/UserLocationsModel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/interface/src/UserLocationsModel.cpp b/interface/src/UserLocationsModel.cpp index b69d8db748..87c81bbcd9 100644 --- a/interface/src/UserLocationsModel.cpp +++ b/interface/src/UserLocationsModel.cpp @@ -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();