Skip to content

Commit

Permalink
Fix jsHint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
speigg committed Jun 9, 2016
1 parent 84095a5 commit f68351b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Source/DataSources/CzmlDataSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,8 +627,6 @@ define([
var isReference = defined(packetData.reference);
var hasInterval = defined(combinedInterval) && !combinedInterval.equals(Iso8601.MAXIMUM_INTERVAL);

var property = object[propertyName];

if (!isReference) {
var packetReferenceFrame = packetData.referenceFrame;
if (defined(packetReferenceFrame)) {
Expand All @@ -654,6 +652,8 @@ define([
return;
}

var property = object[propertyName];

var epoch;
var packetEpoch = packetData.epoch;
if (defined(packetEpoch)) {
Expand Down
1 change: 0 additions & 1 deletion Source/DataSources/OrientationProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ define([
return Quaternion.fromRotationMatrix(icrfToFixedRotation, scratchIcrfToFixed);
}

var scratchMatrix3 = new Matrix3();
var scratchQuaternion = new Quaternion();

/**
Expand Down
1 change: 0 additions & 1 deletion Specs/DataSources/OrientationPropertySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ defineSuite([
ConstantProperty,
Entity) {
"use strict";
/*global jasmine,describe,xdescribe,it,xit,expect,beforeEach,afterEach,beforeAll,afterAll,spyOn,runs,waits,waitsFor*/

var time = JulianDate.now();

Expand Down
1 change: 0 additions & 1 deletion Specs/DataSources/PositionPropertySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ defineSuite([
ConstantProperty,
Entity) {
"use strict";
/*global jasmine,describe,xdescribe,it,xit,expect,beforeEach,afterEach,beforeAll,afterAll,spyOn,runs,waits,waitsFor*/

//Results of the below tests were verified against STK Components.
var time = JulianDate.now();
Expand Down

0 comments on commit f68351b

Please sign in to comment.