Browse Source

Remove unused local variable 'child' in Bone.js

Elwin Arens 11 years ago
parent
commit
c8cfa5d634
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/objects/Bone.js

+ 1 - 1
src/objects/Bone.js

@@ -45,7 +45,7 @@ THREE.Bone.prototype.update = function ( parentSkinMatrix, forceUpdate ) {
 
 
 	// update children
 	// update children
 
 
-	var child, i, l = this.children.length;
+	var i, l = this.children.length;
 
 
 	for ( i = 0; i < l; i ++ ) {
 	for ( i = 0; i < l; i ++ ) {