Rename _ol_format_JSONFeature_ to JSONFeature

This commit is contained in:
Tim Schaub
2017-12-17 01:56:20 -07:00
parent 04230086a4
commit b908361895
4 changed files with 28 additions and 28 deletions

View File

@@ -8,7 +8,7 @@ import {inherits} from '../index.js';
import _ol_asserts_ from '../asserts.js';
import _ol_Feature_ from '../Feature.js';
import FeatureFormat from '../format/Feature.js';
import _ol_format_JSONFeature_ from '../format/JSONFeature.js';
import JSONFeature from '../format/JSONFeature.js';
import GeometryCollection from '../geom/GeometryCollection.js';
import LineString from '../geom/LineString.js';
import MultiLineString from '../geom/MultiLineString.js';
@@ -32,7 +32,7 @@ var GeoJSON = function(opt_options) {
var options = opt_options ? opt_options : {};
_ol_format_JSONFeature_.call(this);
JSONFeature.call(this);
/**
* @inheritDoc
@@ -62,7 +62,7 @@ var GeoJSON = function(opt_options) {
};
inherits(GeoJSON, _ol_format_JSONFeature_);
inherits(GeoJSON, JSONFeature);
/**