From 3e5af5e8159eccf159f26aa7f7c20cbc8d426b74 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 26 Aug 2014 10:45:40 -0700 Subject: [PATCH] removed some debug --- libraries/entities/src/EntityItem.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/entities/src/EntityItem.cpp b/libraries/entities/src/EntityItem.cpp index fcdd491a6f..261df45cda 100644 --- a/libraries/entities/src/EntityItem.cpp +++ b/libraries/entities/src/EntityItem.cpp @@ -487,7 +487,6 @@ int EntityItem::readEntityDataFromBuffer(const unsigned char* data, int bytesLef bytesRead += sizeof(positionFromBuffer); if (overwriteLocalData) { _position = positionFromBuffer; -qDebug() << "EntityItem::readEntityDataFromBuffer() _position=" << _position << " QThread::currentThread()=" << QThread::currentThread(); } } @@ -781,7 +780,6 @@ bool EntityItem::setProperties(const EntityItemProperties& properties, bool forc bool somethingChanged = false; if (properties._positionChanged || forceCopy) { setPosition(properties._position / (float) TREE_SCALE); -qDebug() << "EntityItem::setProperties() _position=" << _position << " QThread::currentThread()=" << QThread::currentThread(); somethingChanged = true; }