mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
removed commented out debug
This commit is contained in:
parent
bdcca9cbf4
commit
9de99ce6a8
6 changed files with 0 additions and 12 deletions
|
@ -18,7 +18,6 @@
|
|||
|
||||
VoxelHideShowThread::VoxelHideShowThread(VoxelSystem* theSystem) :
|
||||
_theSystem(theSystem) {
|
||||
//qDebug() << "VoxelHideShowThread::VoxelHideShowThread() this=" << this;
|
||||
}
|
||||
|
||||
bool VoxelHideShowThread::process() {
|
||||
|
|
|
@ -18,9 +18,6 @@
|
|||
JurisdictionListener::JurisdictionListener(NODE_TYPE type, PacketSenderNotify* notify) :
|
||||
_packetSender(notify, JurisdictionListener::DEFAULT_PACKETS_PER_SECOND)
|
||||
{
|
||||
//qDebug() << "JurisdictionListener::JurisdictionListener() this=" << this;
|
||||
//qDebug() << "JurisdictionListener::JurisdictionListener() this=" << this << " _packetSender=" << &_packetSender;
|
||||
|
||||
_nodeType = type;
|
||||
ReceivedPacketProcessor::_dontSleep = true; // we handle sleeping so this class doesn't need to
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@ OctreePersistThread::OctreePersistThread(Octree* tree, const QString& filename,
|
|||
_persistInterval(persistInterval),
|
||||
_initialLoadComplete(false),
|
||||
_loadTimeUSecs(0) {
|
||||
//qDebug() << "OctreePersistThread::OctreePersistThread()... this=" << this;
|
||||
}
|
||||
|
||||
bool OctreePersistThread::process() {
|
||||
|
|
|
@ -17,12 +17,9 @@ GenericThread::GenericThread() :
|
|||
_stopThread(false),
|
||||
_isThreaded(false) // assume non-threaded, must call initialize()
|
||||
{
|
||||
//qDebug() << "GenericThread::GenericThread() this=" << this;
|
||||
}
|
||||
|
||||
GenericThread::~GenericThread() {
|
||||
//qDebug() << "GenericThread::~GenericThread() this=" << this;
|
||||
|
||||
// we only need to call terminate() if we're actually threaded and still running
|
||||
if (isStillRunning() && isThreaded()) {
|
||||
terminate();
|
||||
|
@ -45,7 +42,6 @@ void GenericThread::initialize(bool isThreaded) {
|
|||
}
|
||||
|
||||
void GenericThread::terminate() {
|
||||
//qDebug() << "GenericThread::terminate()... this=" << this;
|
||||
if (_isThreaded) {
|
||||
_stopThread = true;
|
||||
|
||||
|
@ -74,7 +70,6 @@ void GenericThread::threadRoutine() {
|
|||
|
||||
// If we were on a thread, then quit our thread
|
||||
if (_isThreaded && _thread) {
|
||||
//qDebug() << "GenericThread::threadRoutine()... about to call _thread->quit() this=" << this << " _thread=" << _thread;
|
||||
_thread->quit();
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@ PacketSender::PacketSender(PacketSenderNotify* notify, int packetsPerSecond) :
|
|||
_totalPacketsQueued(0),
|
||||
_totalBytesQueued(0)
|
||||
{
|
||||
//qDebug() << "PacketSender::PacketSender()... this=" << this;
|
||||
}
|
||||
|
||||
PacketSender::~PacketSender() {
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
ReceivedPacketProcessor::ReceivedPacketProcessor() {
|
||||
_dontSleep = false;
|
||||
//qDebug() << "ReceivedPacketProcessor::ReceivedPacketProcessor()... this=" << this;
|
||||
}
|
||||
|
||||
void ReceivedPacketProcessor::queueReceivedPacket(const HifiSockAddr& address, unsigned char* packetData, ssize_t packetLength) {
|
||||
|
|
Loading…
Reference in a new issue