From 90c0944617eb53b78ededb6141912531c1fdc6ea Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 28 Apr 2014 12:45:19 +0200 Subject: [PATCH] Fix coding style --- src/ol/featureoverlay.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ol/featureoverlay.js b/src/ol/featureoverlay.js index 420a7e7430..255264b2d4 100644 --- a/src/ol/featureoverlay.js +++ b/src/ol/featureoverlay.js @@ -113,8 +113,7 @@ ol.FeatureOverlay.prototype.handleFeatureChange_ = function() { * @private * @param {ol.CollectionEvent} collectionEvent Collection event. */ -ol.FeatureOverlay.prototype.handleFeaturesAdd_ = - function(collectionEvent) { +ol.FeatureOverlay.prototype.handleFeaturesAdd_ = function(collectionEvent) { goog.asserts.assert(!goog.isNull(this.featureChangeListenerKeys_)); var feature = /** @type {ol.Feature} */ (collectionEvent.element); this.featureChangeListenerKeys_[goog.getUid(feature).toString()] = @@ -128,8 +127,7 @@ ol.FeatureOverlay.prototype.handleFeaturesAdd_ = * @private * @param {ol.CollectionEvent} collectionEvent Collection event. */ -ol.FeatureOverlay.prototype.handleFeaturesRemove_ = - function(collectionEvent) { +ol.FeatureOverlay.prototype.handleFeaturesRemove_ = function(collectionEvent) { goog.asserts.assert(!goog.isNull(this.featureChangeListenerKeys_)); var feature = /** @type {ol.Feature} */ (collectionEvent.element); var key = goog.getUid(feature).toString();