Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhawak committed Aug 20, 2020
1 parent 836d0be commit 465c4a1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ public void cancelRequest() {
directionsAPIResponseCall.cancel();
}

public static String getParsedNavResponse(DirectionsAPIResponse response, String mode,Locale locale, Context context) {
return NavigateResponseConverter.convertFromGHResponse(response.getData().get(0), mode, locale, context).toString();
}
public static String getParsedNavResponse(DirectionsAPIResponse response, String mode, Context context) {
return NavigateResponseConverter.convertFromGHResponse(response.getData().get(0), mode,context).toString();
return NavigateResponseConverter.convertFromGHResponse(response.getData().get(0), mode, context).toString();
}
// public static String getParsedNavResponse(DirectionsAPIResponse response, String mode) {
// return NavigateResponseConverter.convertFromGHResponse(response.getData().get(0), mode).toString();
// }
}

0 comments on commit 465c4a1

Please sign in to comment.