Rename ol.format.XML to ol.format.XMLFeature

This commit is contained in:
Tom Payne
2014-02-28 13:13:11 +01:00
parent 7e32676a9e
commit 56b6913a01
4 changed files with 31 additions and 31 deletions
+3 -3
View File
@@ -6,7 +6,7 @@ goog.require('goog.asserts');
goog.require('goog.dom.NodeType');
goog.require('goog.object');
goog.require('ol.Feature');
goog.require('ol.format.XML');
goog.require('ol.format.XMLFeature');
goog.require('ol.format.XSD');
goog.require('ol.geom.LineString');
goog.require('ol.geom.MultiLineString');
@@ -18,13 +18,13 @@ goog.require('ol.xml');
/**
* @constructor
* @extends {ol.format.XML}
* @extends {ol.format.XMLFeature}
* @todo stability experimental
*/
ol.format.GPX = function() {
goog.base(this);
};
goog.inherits(ol.format.GPX, ol.format.XML);
goog.inherits(ol.format.GPX, ol.format.XMLFeature);
/**