Skip to content

Commit 6c91394

Browse files
author
Langston Smith
authored
Adjusted @SInCE 4.10.0 annotations to 4.9.0 (#1078)
1 parent 3aeb142 commit 6c91394

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

services-geocoding/src/main/java/com/mapbox/api/geocoding/v5/MapboxGeocoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ public abstract Builder reverseMode(
590590
* @param streetOneName First street name of the intersection
591591
* @param streetTwoName Second street name of the intersection
592592
* @return this builder for chaining options together
593-
* @since 4.10.0
593+
* @since 4.9.0
594594
*/
595595
public Builder intersectionStreets(@NonNull String streetOneName,
596596
@NonNull String streetTwoName) {

services-turf/src/main/java/com/mapbox/turf/TurfConversion.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)