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);