Skip to content

Commit

Permalink
Remove unused requires and fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
bagnell committed May 16, 2017
1 parent ccfce64 commit bd3ea99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 2 additions & 4 deletions Source/Scene/Cesium3DTileFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
define([
'../Core/Color',
'../Core/defined',
'../Core/defineProperties',
'../Scene/Material'
'../Core/defineProperties'
], function(
Color,
defined,
defineProperties,
Material) {
defineProperties) {
'use strict';

/**
Expand Down
4 changes: 1 addition & 3 deletions Source/Scene/Cesium3DTileStyleEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ define([
'../Core/defineProperties',
'../Core/DistanceDisplayCondition',
'../Core/NearFarScalar',
'../Scene/Material',
'./LabelStyle'
], function(
Color,
defined,
defineProperties,
DistanceDisplayCondition,
NearFarScalar,
Material,
LabelStyle) {
'use strict';

Expand Down Expand Up @@ -139,7 +137,7 @@ define([
feature.backgroundEnabled = style.backgroundEnabled.evaluate(frameState, feature);

if (defined(feature.anchorLineColor)) {
feature.anchorLineColor = style.anchorLineColor.evaluateColor(frameState, feature);
feature.anchorLineColor = style.anchorLineColor.evaluateColor(frameState, feature);
}

var scaleByDistanceNearRange = style.scaleByDistanceNearRange;
Expand Down

0 comments on commit bd3ea99

Please sign in to comment.