One fewer anonymous function
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
goog.provide('ol.Disposable');
|
goog.provide('ol.Disposable');
|
||||||
|
|
||||||
|
goog.require('ol');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Objects that need to clean up after themselves.
|
* Objects that need to clean up after themselves.
|
||||||
* @constructor
|
* @constructor
|
||||||
@@ -27,4 +29,4 @@ ol.Disposable.prototype.dispose = function() {
|
|||||||
* Extension point for disposable objects.
|
* Extension point for disposable objects.
|
||||||
* @protected
|
* @protected
|
||||||
*/
|
*/
|
||||||
ol.Disposable.prototype.disposeInternal = function() {};
|
ol.Disposable.prototype.disposeInternal = ol.nullFunction;
|
||||||
|
|||||||
Reference in New Issue
Block a user