Skip to content

Commit c54df91

Browse files
author
Hannah
authored
Merge pull request #6972 from AnalyticalGraphicsInc/remove-in-1.49
Remove createLensFlarStage
2 parents d6e03a2 + c657666 commit c54df91

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

CHANGES.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Change Log
66
##### Breaking Changes :mega:
77
* Removed `ClippingPlaneCollection.clone` [#6872](https://github.com/AnalyticalGraphicsInc/cesium/pull/6872)
88
* Changed `Globe.pick` to return a position in ECEF coordinates regardless of the current scene mode. This will only effect you if you were working around a bug to make `Globe.pick` work in 2D and Columbus View. Use `Globe.pickWorldCoordinates` to get the position in world coordinates that correlate to the current scene mode. [#6859](https://github.com/AnalyticalGraphicsInc/cesium/pull/6859)
9-
* Removed the unused `frameState` parameter in `evaluate` and `evaluateColor` functions in `Expression`, `StyleExpression`, `ConditionsExpression` and all other places that call the functions. [#6890](https://github.com/AnalyticalGraphicsInc/cesium/pull/6890).
9+
* Removed the unused `frameState` parameter in `evaluate` and `evaluateColor` functions in `Expression`, `StyleExpression`, `ConditionsExpression` and all other places that call the functions. [#6890](https://github.com/AnalyticalGraphicsInc/cesium/pull/6890)
10+
* Removed `PostProcessStageLibrary.createLensFlarStage`. Use `PostProcessStageLibrary.createLensFlareStage` instead. [#6972](https://github.com/AnalyticalGraphicsInc/cesium/pull/6972)
1011

1112
##### Additions :tada:
1213
* Added `ClippingPlaneCollection.planeAdded` and `ClippingPlaneCollection.planeRemoved` events. `planeAdded` is raised when a new plane is added to the collection and `planeRemoved` is raised when a plane is removed. [#6875](https://github.com/AnalyticalGraphicsInc/cesium/pull/6875)

Source/Scene/PostProcessStageLibrary.js

-13
Original file line numberDiff line numberDiff line change
@@ -776,18 +776,5 @@ define([
776776
});
777777
};
778778

779-
/**
780-
* Renaming createLensFlarStage to createLensFlareStage would lead to breaking change
781-
* @deprecated
782-
* @private
783-
*/
784-
PostProcessStageLibrary.createLensFlarStage = function() {
785-
deprecationWarning(
786-
'PostProcessStageLibrary.createLensFlarStage',
787-
'createLensFlarStage has been deprecated and will be removed in Cesium 1.49. Use createLensFlareStage instead'
788-
);
789-
return PostProcessStageLibrary.createLensFlareStage();
790-
};
791-
792779
return PostProcessStageLibrary;
793780
});

0 commit comments

Comments
 (0)