Use goog.functions.NULL instead of goog.nullFunction, thanks @elemoine

This commit is contained in:
Tom Payne
2012-11-02 18:20:52 +01:00
parent dfd495153d
commit 4d3726d183

View File

@@ -2,6 +2,7 @@ goog.provide('ol.renderer.Map');
goog.require('goog.Disposable');
goog.require('goog.events');
goog.require('goog.functions');
goog.require('goog.fx.anim');
goog.require('goog.fx.anim.Animated');
goog.require('goog.vec.Mat4');
@@ -202,7 +203,7 @@ ol.renderer.Map.prototype.getPixelFromCoordinate = function(coordinate) {
/**
* Handle background color changed.
*/
ol.renderer.Map.prototype.handleBackgroundColorChanged = goog.nullFunction;
ol.renderer.Map.prototype.handleBackgroundColorChanged = goog.functions.NULL;
/**