Rename _ol_format_TextFeature_ to TextFeature

This commit is contained in:
Tim Schaub
2017-12-17 02:06:43 -07:00
parent 2e98eec48d
commit cc08dcd2ca
5 changed files with 30 additions and 30 deletions

View File

@@ -5,7 +5,7 @@ import {inherits} from '../index.js';
import _ol_Feature_ from '../Feature.js';
import FeatureFormat from '../format/Feature.js';
import _ol_format_IGCZ_ from '../format/IGCZ.js';
import _ol_format_TextFeature_ from '../format/TextFeature.js';
import TextFeature from '../format/TextFeature.js';
import GeometryLayout from '../geom/GeometryLayout.js';
import LineString from '../geom/LineString.js';
import {get as getProjection} from '../proj.js';
@@ -23,7 +23,7 @@ var IGC = function(opt_options) {
var options = opt_options ? opt_options : {};
_ol_format_TextFeature_.call(this);
TextFeature.call(this);
/**
* @inheritDoc
@@ -39,7 +39,7 @@ var IGC = function(opt_options) {
};
inherits(IGC, _ol_format_TextFeature_);
inherits(IGC, TextFeature);
/**