diff options
author | Aura Linden <aura@lindenlab.com> | 2015-11-13 14:31:21 -0800 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2015-11-13 14:31:21 -0800 |
commit | cdb96f8044fd609f92b9009450454e356008ca1c (patch) | |
tree | cafc6ad3c13940a2ce0feabb7c154b3d66c38344 /indra/newview/llvoavatar.cpp | |
parent | 99219cbe80d56dbd9d6f75689304ce2759592868 (diff) |
Post review changes.
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rwxr-xr-x | indra/newview/llvoavatar.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index b6924e5904..3b482e1bc0 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -937,27 +937,6 @@ std::string LLVOAvatar::rezStatusToString(S32 rez_status) return "unknown"; } -void LLVOAvatar::getLegalJointNames(std::deque<std::string>& legal_joint_names, - bool include_collision_volumes) -{ - LLAvatarAppearance::joint_alias_map_t alias_map = getJointAliases(); - - std::map<std::string, std::string>::iterator iter; - - for (iter = alias_map.begin(); iter != alias_map.end(); ++iter) - { - legal_joint_names.push_back(iter->first); - } - - if (include_collision_volumes) - { - for (S32 i = 0; i < mNumCollisionVolumes; i++) - { - legal_joint_names.push_back(mCollisionVolumes[i].getName()); - } - } -} - // static void LLVOAvatar::dumpBakedStatus() { |