@@ -215,7 +215,7 @@ public static FeatureCollection explode(@NonNull Feature feature) {
215215 *
216216 * @param feature a {@link Feature} object that contains {@link Polygon}
217217 * @return a {@link Feature} object that contains {@link LineString} or {@link MultiLineString}
218- * @since 4.10 .0
218+ * @since 4.9 .0
219219 */
220220 public static Feature polygonToLine (@ NotNull Feature feature ) {
221221 return polygonToLine (feature , null );
@@ -228,7 +228,7 @@ public static Feature polygonToLine(@NotNull Feature feature) {
228228 * @param feature a {@link Feature} object that contains {@link Polygon}
229229 * @param properties a {@link JsonObject} that represents a feature's properties
230230 * @return a {@link Feature} object that contains {@link LineString} or {@link MultiLineString}
231- * @since 4.10 .0
231+ * @since 4.9 .0
232232 */
233233 public static Feature polygonToLine (@ NotNull Feature feature , @ Nullable JsonObject properties ) {
234234 Geometry geometry = feature .geometry ();
@@ -245,7 +245,7 @@ public static Feature polygonToLine(@NotNull Feature feature, @Nullable JsonObje
245245 *
246246 * @param polygon a {@link Polygon} object
247247 * @return a {@link Feature} object that contains {@link LineString} or {@link MultiLineString}
248- * @since 4.10 .0
248+ * @since 4.9 .0
249249 */
250250 public static Feature polygonToLine (@ NotNull Polygon polygon ) {
251251 return polygonToLine (polygon , null );
@@ -259,7 +259,7 @@ public static Feature polygonToLine(@NotNull Polygon polygon) {
259259 * @param multiPolygon a {@link MultiPolygon} object
260260 * @return a {@link FeatureCollection} object that contains
261261 * list of {@link Feature} of {@link LineString} or {@link MultiLineString}
262- * @since 4.10 .0
262+ * @since 4.9 .0
263263 */
264264 public static FeatureCollection polygonToLine (@ NotNull MultiPolygon multiPolygon ) {
265265 return polygonToLine (multiPolygon , null );
@@ -272,7 +272,7 @@ public static FeatureCollection polygonToLine(@NotNull MultiPolygon multiPolygon
272272 * @param polygon a {@link Polygon} object
273273 * @param properties a {@link JsonObject} that represents a feature's properties
274274 * @return a {@link Feature} object that contains {@link LineString} or {@link MultiLineString}
275- * @since 4.10 .0
275+ * @since 4.9 .0
276276 */
277277 public static Feature polygonToLine (@ NotNull Polygon polygon , @ Nullable JsonObject properties ) {
278278 return coordsToLine (polygon .coordinates (), properties );
@@ -287,7 +287,7 @@ public static Feature polygonToLine(@NotNull Polygon polygon, @Nullable JsonObje
287287 * @param properties a {@link JsonObject} that represents a feature's properties
288288 * @return a {@link FeatureCollection} object that contains
289289 * list of {@link Feature} of {@link LineString} or {@link MultiLineString}
290- * @since 4.10 .0
290+ * @since 4.9 .0
291291 */
292292 public static FeatureCollection polygonToLine (@ NotNull MultiPolygon multiPolygon ,
293293 @ Nullable JsonObject properties ) {
@@ -307,7 +307,7 @@ public static FeatureCollection polygonToLine(@NotNull MultiPolygon multiPolygon
307307 * @param feature a {@link Feature} object that contains {@link Polygon}
308308 * @return a {@link FeatureCollection} object that contains list of {@link Feature}
309309 * of {@link LineString} or {@link MultiLineString}
310- * @since 4.10 .0
310+ * @since 4.9 .0
311311 */
312312 public static FeatureCollection multiPolygonToLine (@ NotNull Feature feature ) {
313313 return multiPolygonToLine (feature , null );
@@ -323,7 +323,7 @@ public static FeatureCollection multiPolygonToLine(@NotNull Feature feature) {
323323 * @param properties a {@link JsonObject} that represents a feature's properties
324324 * @return a {@link FeatureCollection} object that contains
325325 * list of {@link Feature} of {@link LineString} or {@link MultiLineString}
326- * @since 4.10 .0
326+ * @since 4.9 .0
327327 */
328328 public static FeatureCollection multiPolygonToLine (@ NotNull Feature feature ,
329329 @ Nullable JsonObject properties ) {
0 commit comments