From 2fcd76bd54069056c0bb255e525b97799a6d1196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Thu, 5 Jul 2012 14:01:44 +0200 Subject: [PATCH] ol.handler.Drag no longer needs a disposeInternal method --- src/ol/handler/Drag.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/ol/handler/Drag.js b/src/ol/handler/Drag.js index 77837c7268..0be5ecaeab 100644 --- a/src/ol/handler/Drag.js +++ b/src/ol/handler/Drag.js @@ -54,12 +54,3 @@ ol.handler.Drag = function(map, elt) { handleDragEnd, false, this); }; goog.inherits(ol.handler.Drag, goog.Disposable); - -/** - * @inheritDoc - */ -ol.handler.Drag.prototype.disposeInternal = function() { - goog.base(this, 'disposeInternal'); - this.dragger_.dispose(); - delete this.dragger_; -};