Rename _ol_format_XML_ to XML

This commit is contained in:
Tim Schaub
2017-12-17 02:23:17 -07:00
parent 2aeef0b120
commit 02fb48e15d
4 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
*/
import {inherits} from '../index.js';
import XLink from '../format/XLink.js';
import _ol_format_XML_ from '../format/XML.js';
import XML from '../format/XML.js';
import _ol_format_XSD_ from '../format/XSD.js';
import _ol_xml_ from '../xml.js';
@@ -17,7 +17,7 @@ import _ol_xml_ from '../xml.js';
*/
var WMSCapabilities = function() {
_ol_format_XML_.call(this);
XML.call(this);
/**
* @type {string|undefined}
@@ -25,7 +25,7 @@ var WMSCapabilities = function() {
this.version = undefined;
};
inherits(WMSCapabilities, _ol_format_XML_);
inherits(WMSCapabilities, XML);
/**