From 1df3b59aa19e19ae07ec009deaf1f0f92b7d248a Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Sun, 24 Jul 2016 19:19:35 -0700 Subject: [PATCH] change BUG to FIXME --- libraries/avatars/src/AvatarData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/avatars/src/AvatarData.cpp b/libraries/avatars/src/AvatarData.cpp index 9034f58c93..dee0d1cb20 100644 --- a/libraries/avatars/src/AvatarData.cpp +++ b/libraries/avatars/src/AvatarData.cpp @@ -689,7 +689,7 @@ void AvatarData::clearJointData(int index) { return; } QWriteLocker writeLock(&_jointDataLock); - // BUG: I don't understand how this "clears" the joint data at index + // FIXME: I don't understand how this "clears" the joint data at index if (_jointData.size() <= index) { _jointData.resize(index + 1); } @@ -888,7 +888,7 @@ void AvatarData::setJointTranslations(QVector jointTranslations) { } void AvatarData::clearJointsData() { - // BUG: this method is terribly inefficient and probably doesn't even work + // FIXME: this method is terribly inefficient and probably doesn't even work // (see implementation of clearJointData(index)) for (int i = 0; i < _jointData.size(); ++i) { clearJointData(i);