Don't make ol.format.ogc.filter.Filter inherit from ol.Object

This commit is contained in:
Frederic Junod
2016-06-06 17:05:01 +02:00
parent de9c338fb1
commit c51fc84b72

View File

@@ -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.