Remove unneeded type cast

This commit is contained in:
Frederic Junod
2019-01-28 15:33:57 +01:00
parent 5318d52036
commit 0b53a3229b
10 changed files with 24 additions and 24 deletions

View File

@@ -275,7 +275,7 @@ class Select extends Interaction {
* @api
*/
getFeatures() {
return /** @type {VectorSource} */ (this.featureOverlay_.getSource()).getFeaturesCollection();
return this.featureOverlay_.getSource().getFeaturesCollection();
}
/**