Fix render/Feature scope issue

This commit is contained in:
Andreas Hocevar
2020-04-14 20:46:49 +02:00
parent b0393a098a
commit 6426cd10dc
+5 -5
View File
@@ -305,14 +305,14 @@ class RenderFeature {
this.flatCoordinates_ this.flatCoordinates_
); );
} }
} /**
/**
* @return {Array<number>|Array<Array<number>>} Ends or endss. * @return {Array<number>|Array<Array<number>>} Ends or endss.
*/ */
RenderFeature.prototype.getEnds = function () { getEnds() {
return this.ends_; return this.ends_;
}; }
}
RenderFeature.prototype.getEndss = RenderFeature.prototype.getEnds; RenderFeature.prototype.getEndss = RenderFeature.prototype.getEnds;
/** /**