Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static class Builder extends MapboxBuilder {
// We use `Boolean` instead of `boolean` to allow unset (null) values.
private String user = null;
private String profile = null;
private ArrayList<Position> coordinates = null;
private List<Position> coordinates = null;
private String accessToken = null;
private Boolean alternatives = null;
private String geometries = null;
Expand Down Expand Up @@ -187,7 +187,7 @@ public Builder setProfile(String profile) {
* @return Builder
* @since 1.0.0
*/
public Builder setCoordinates(ArrayList<Position> coordinates) {
public Builder setCoordinates(List<Position> coordinates) {
this.coordinates = coordinates;
return this;
}
Expand Down