Remove ol.Bounds
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
goog.provide('ol.Bounds');
|
||||
|
||||
goog.require('goog.math.Box');
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {goog.math.Box}
|
||||
* @param {number} top Top.
|
||||
* @param {number} right Right.
|
||||
* @param {number} bottom Bottom.
|
||||
* @param {number} left Left.
|
||||
*/
|
||||
ol.Bounds = function(top, right, bottom, left) {
|
||||
|
||||
goog.base(this, top, right, bottom, left);
|
||||
|
||||
};
|
||||
goog.inherits(ol.Bounds, goog.math.Box);
|
||||
Reference in New Issue
Block a user