Fixing visibility (@private/@protected) annotationto introduce compiler warnings for that.

This commit is contained in:
Petr Pridal
2012-06-20 11:35:58 +02:00
parent 25d4ef17fd
commit e0d444551c
4 changed files with 13 additions and 14 deletions
+5 -5
View File
@@ -14,31 +14,31 @@ goog.require('ol.Projection');
ol.Bounds = function(minX, minY, maxX, maxY, opt_projection) {
/**
* @private
* @protected
* @type {number}
*/
this.minX_ = minX;
/**
* @private
* @protected
* @type {number}
*/
this.minY_ = minY;
/**
* @private
* @protected
* @type {number}
*/
this.maxX_ = maxX;
/**
* @private
* @protected
* @type {number}
*/
this.maxY_ = maxY;
/**
* @private
* @protected
* @type {ol.Projection|undefined}
*/
this.projection_ = opt_projection;