Don't make ol.format.ogc.filter.Filter inherit from ol.Object
This commit is contained in:
@@ -19,7 +19,6 @@ goog.provide('ol.format.ogc.filter.IsBetween');
|
||||
goog.provide('ol.format.ogc.filter.IsLike');
|
||||
|
||||
goog.require('ol.Extent');
|
||||
goog.require('ol.Object');
|
||||
|
||||
|
||||
/**
|
||||
@@ -214,20 +213,17 @@ ol.format.ogc.filter.like = function(propertyName, pattern,
|
||||
*
|
||||
* @constructor
|
||||
* @param {!string} tagName The XML tag name for this filter.
|
||||
* @extends {ol.Object}
|
||||
* @struct
|
||||
* @api
|
||||
*/
|
||||
ol.format.ogc.filter.Filter = function(tagName) {
|
||||
|
||||
goog.base(this);
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {!string}
|
||||
*/
|
||||
this.tagName_ = tagName;
|
||||
};
|
||||
goog.inherits(ol.format.ogc.filter.Filter, ol.Object);
|
||||
|
||||
/**
|
||||
* The XML tag name for a filter.
|
||||
|
||||
Reference in New Issue
Block a user