Add deprecated method to not have a breaking change.. >_>

This commit is contained in:
Lukas Rieger (Blue) 2022-08-22 11:21:55 +02:00
parent f8d10d1f20
commit 4831537059
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 10 additions and 0 deletions

View File

@ -202,4 +202,14 @@ public class POIMarker extends DistanceRangedMarker {
}
// ------
/**
* @deprecated use {@link #builder()} instead.
*/
@Deprecated
public static Builder toBuilder() {
return new Builder();
}
}