Skip to content

Commit

Permalink
Forgetting to check jsHint before committing
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaStorm committed Jun 20, 2016
1 parent 224c122 commit a79a2ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/gltfPrimitiveToCesiumGeometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ module.exports = gltfPrimitiveToCesiumGeometry;
function unpackArray(values) {
var length = values.data.length;
var packed;
var i;
switch (values.type) {
case 'Cartesian2':
packed = new Array(length * 2);
for (var i = 0; i < length; ++i) {
for (i = 0; i < length; ++i) {
Cartesian2.pack(values.data[i], packed, i * 2);
}
return packed;
Expand Down

0 comments on commit a79a2ae

Please sign in to comment.