From 91ff9722ec25a9b7188497b0d027f0d16e4aa204 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Fri, 16 Sep 2016 15:23:41 -0700 Subject: [PATCH] remove crufty comments --- libraries/animation/src/Rig.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/animation/src/Rig.cpp b/libraries/animation/src/Rig.cpp index 240190ae2c..2d44a660a6 100644 --- a/libraries/animation/src/Rig.cpp +++ b/libraries/animation/src/Rig.cpp @@ -300,7 +300,6 @@ void Rig::clearJointAnimationPriority(int index) { void Rig::clearIKJointLimitHistory() { if (_animNode) { _animNode->traverse([&](AnimNode::Pointer node) { - // only report clip nodes as valid roles. auto ikNode = std::dynamic_pointer_cast(node); if (ikNode) { ikNode->clearIKJointLimitHistory(); @@ -313,7 +312,6 @@ void Rig::clearIKJointLimitHistory() { void Rig::setMaxHipsOffsetLength(float maxLength) { if (_animNode) { _animNode->traverse([&](AnimNode::Pointer node) { - // only report clip nodes as valid roles. auto ikNode = std::dynamic_pointer_cast(node); if (ikNode) { ikNode->setMaxHipsOffsetLength(maxLength);