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
+4 -4
View File
@@ -10,25 +10,25 @@ goog.provide('ol.UnreferencedBounds');
ol.UnreferencedBounds = function(minX, minY, maxX, maxY) {
/**
* @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;