From 320ba9177c9a846a56b22f10514bf0f75fd5d8eb Mon Sep 17 00:00:00 2001
From: Andrew Meadows <andrew@highfidelity.io>
Date: Mon, 10 Dec 2018 13:29:13 -0800
Subject: [PATCH] remove cruft

---
 interface/src/avatar/MyAvatar.cpp       | 1 -
 libraries/octree/src/OctreePacketData.h | 2 --
 2 files changed, 3 deletions(-)

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