From c51fc84b7200c6c571638589fe086943e3ceaa94 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 6 Jun 2016 17:05:01 +0200 Subject: [PATCH] Don't make ol.format.ogc.filter.Filter inherit from ol.Object --- src/ol/format/ogc/filter.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ol/format/ogc/filter.js b/src/ol/format/ogc/filter.js index c4c5422f13..9da33a4c58 100644 --- a/src/ol/format/ogc/filter.js +++ b/src/ol/format/ogc/filter.js @@ -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.