Fix jsHint warnings

This commit is contained in:
Sean Lilley 2016-06-22 10:12:00 -04:00
parent 10925599e1
commit 06b68cd6a0
2 changed files with 2 additions and 2 deletions

View File

@ -333,7 +333,7 @@ function createGltf(data, inputPath, modelName, done) {
throw err; throw err;
} }
done(gltf); done(gltf);
}) });
} else { } else {
done(gltf); done(gltf);
} }

View File

@ -293,7 +293,7 @@ function getMaterials(mtlPath, hasMaterialGroups, done) {
} }
function getObjInfo(objFile, inputPath, done) { function getObjInfo(objFile, inputPath, done) {
var mtlPath = undefined; var mtlPath;
var hasMaterialGroups = false; var hasMaterialGroups = false;
var hasPositions = false; var hasPositions = false;
var hasNormals = false; var hasNormals = false;