Skip to content

Commit

Permalink
Merge pull request #3147 from AnalyticalGraphicsInc/fix-deprecated
Browse files Browse the repository at this point in the history
Ignore the deprecated Scene version of HeadingPitchRange
  • Loading branch information
shunter committed Oct 30, 2015
2 parents c063697 + 7d4ca23 commit a0a1446
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,12 @@ function createCesiumJs() {

var parameterName = moduleId.replace(nonIdentifierRegexp, '_');

//Ignore the deprecated Scene version of HeadingPitchRange
//until it is removed with #3097
if (moduleId === 'Scene/HeadingPitchRange') {
return;
}

moduleIds.push("'./" + moduleId + "'");
parameters.push(parameterName);
assignments.push('Cesium' + assignmentName + ' = ' + parameterName + ';');
Expand Down

0 comments on commit a0a1446

Please sign in to comment.