From 6af2d5ae47e5cee147fdc6a7c7a20295fb36683a Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 18 Mar 2014 13:58:22 +0100 Subject: [PATCH] Remove trailing newlines --- src/ol/interaction/pointerinteraction.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/ol/interaction/pointerinteraction.js b/src/ol/interaction/pointerinteraction.js index 9ab7b705c6..4f0744b078 100644 --- a/src/ol/interaction/pointerinteraction.js +++ b/src/ol/interaction/pointerinteraction.js @@ -101,8 +101,7 @@ ol.interaction.Pointer.prototype.updateTrackedPointers_ = * @param {ol.MapBrowserPointerEvent} mapBrowserEvent Event. * @protected */ -ol.interaction.Pointer.prototype.handlePointerDrag = - goog.nullFunction; +ol.interaction.Pointer.prototype.handlePointerDrag = goog.nullFunction; /** @@ -110,8 +109,7 @@ ol.interaction.Pointer.prototype.handlePointerDrag = * @protected * @return {boolean} Capture dragging. */ -ol.interaction.Pointer.prototype.handlePointerUp = - goog.functions.FALSE; +ol.interaction.Pointer.prototype.handlePointerUp = goog.functions.FALSE; /** @@ -119,8 +117,7 @@ ol.interaction.Pointer.prototype.handlePointerUp = * @protected * @return {boolean} Capture dragging. */ -ol.interaction.Pointer.prototype.handlePointerDown = - goog.functions.FALSE; +ol.interaction.Pointer.prototype.handlePointerDown = goog.functions.FALSE; /** @@ -162,5 +159,4 @@ ol.interaction.Pointer.prototype.handleMapBrowserEvent = * @param {boolean} handled Was the event handled by the interaction? * @return {boolean} Should the event be stopped? */ -ol.interaction.Pointer.prototype.shouldStopEvent = - goog.functions.FALSE; +ol.interaction.Pointer.prototype.shouldStopEvent = goog.functions.FALSE;