Skip to content

Commit

Permalink
Revise AssignmentSaveRequestBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapter1990 committed Aug 19, 2023
1 parent 02f7101 commit a46a080
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public AssignmentSaveRequestBuilder withLastName(String lastName) {
return this;
}

public AssignmentSaveRequestBuilder withLatitude(double latitude) {
public AssignmentSaveRequestBuilder withLatitude(Double latitude) {
data.setLatitude(latitude);
return this;
}

public AssignmentSaveRequestBuilder withLongitude(double longitude) {
public AssignmentSaveRequestBuilder withLongitude(Double longitude) {
data.setLongitude(longitude);
return this;
}
Expand Down

0 comments on commit a46a080

Please sign in to comment.