3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-26 20:55:52 +02:00

remove cruft

This commit is contained in:
Andrew Meadows 2018-12-10 13:29:13 -08:00
parent 121a591023
commit 320ba9177c
2 changed files with 0 additions and 3 deletions
interface/src/avatar
libraries/octree/src

View file

@ -1316,7 +1316,6 @@ void MyAvatar::saveAvatarEntityDataToSettings() {
// find set of things that changed
std::set<QUuid> entitiesToSave;
_avatarEntitiesLock.withWriteLock([&] {
// TODO: save these to settings.
entitiesToSave = std::move(_entitiesToSaveToSettings);
for (const auto& id : _entitiesToRemoveFromSettings) {
// remove

View file

@ -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; }