Skip to content

Commit

Permalink
Ignore the deprecated Scene version of HeadingPitchRange
Browse files Browse the repository at this point in the history
Fixes #3143
  • Loading branch information
mramato committed Oct 29, 2015
1 parent 0419ff1 commit 7d4ca23
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 @@ -701,6 +701,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 7d4ca23

Please sign in to comment.