Skip to content

Commit

Permalink
Fixed jsHint error
Browse files Browse the repository at this point in the history
  • Loading branch information
leerichard42 committed May 20, 2016
1 parent d394899 commit ed3e7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/combineNodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ function combineNodes(gltf, preserveCameras) {
var roots = scenes[sceneId].nodes;
if (defined(roots)) {
var rootsLength = roots.length;
for (var i = 0; i < rootsLength; i++) {
combineSubtree(gltf, roots[i], preserveCameras);
for (var j = 0; j < rootsLength; j++) {
combineSubtree(gltf, roots[j], preserveCameras);
}
}
}
Expand Down

0 comments on commit ed3e7bc

Please sign in to comment.