diff --git a/interface/src/avatar/MyAvatar.cpp b/interface/src/avatar/MyAvatar.cpp index 58b4d5e7d9..9a0787151d 100755 --- a/interface/src/avatar/MyAvatar.cpp +++ b/interface/src/avatar/MyAvatar.cpp @@ -1316,7 +1316,6 @@ void MyAvatar::saveAvatarEntityDataToSettings() { // find set of things that changed std::set entitiesToSave; _avatarEntitiesLock.withWriteLock([&] { - // TODO: save these to settings. entitiesToSave = std::move(_entitiesToSaveToSettings); for (const auto& id : _entitiesToRemoveFromSettings) { // remove diff --git a/libraries/octree/src/OctreePacketData.h b/libraries/octree/src/OctreePacketData.h index 01ed4977b0..bd1abf8744 100644 --- a/libraries/octree/src/OctreePacketData.h +++ b/libraries/octree/src/OctreePacketData.h @@ -220,8 +220,6 @@ public: /// get pointer to the uncompressed stream buffer at the byteOffset const unsigned char* getUncompressedData(int byteOffset = 0) { return &_uncompressed[byteOffset]; } - const QByteArray& getUncompressedByteArray() { return _uncompressedByteArray; } - /// the size of the packet in uncompressed form int getUncompressedSize() { return _bytesInUse; }