Rename _ol_format_OWS_ to OWS

This commit is contained in:
Tim Schaub
2017-12-17 02:04:43 -07:00
parent a2d2f5e611
commit 1527f04db3
3 changed files with 80 additions and 80 deletions

View File

@@ -3,7 +3,7 @@
*/
import {inherits} from '../index.js';
import {boundingExtent} from '../extent.js';
import _ol_format_OWS_ from '../format/OWS.js';
import OWS from '../format/OWS.js';
import _ol_format_XLink_ from '../format/XLink.js';
import _ol_format_XML_ from '../format/XML.js';
import _ol_format_XSD_ from '../format/XSD.js';
@@ -24,7 +24,7 @@ var _ol_format_WMTSCapabilities_ = function() {
* @type {ol.format.OWS}
* @private
*/
this.owsParser_ = new _ol_format_OWS_();
this.owsParser_ = new OWS();
};
inherits(_ol_format_WMTSCapabilities_, _ol_format_XML_);