removed some debug code

This commit is contained in:
ZappoMan 2013-05-06 16:09:21 -07:00
parent 4b0cde0b0d
commit 68d58650a5

View file

@ -105,10 +105,6 @@ int VoxelSystem::parseData(unsigned char* sourceBuffer, int numBytes) {
PerformanceWarning warn(_renderWarningsOn, "readBitstreamToTree()");
// ask the VoxelTree to read the bitstream into the tree
_tree->readBitstreamToTree(voxelData, numBytes - 1);
if (_renderWarningsOn && _tree->getNodesChangedFromBitstream()) {
printLog("readBitstreamToTree()... getNodesChangedFromBitstream=%ld _tree->isDirty()=%s \n",
_tree->getNodesChangedFromBitstream(), (_tree->isDirty() ? "yes" : "no") );
}
}
break;
case PACKET_HEADER_ERASE_VOXEL: