Commit dd4a0e2d authored by Chris Scott's avatar Chris Scott

Remove unnecessary ref to this in those new method-calls, was in javascript mode.

parent 87959ef6
...@@ -508,8 +508,8 @@ public class BackgroundGeolocationService extends Service implements GoogleApiCl ...@@ -508,8 +508,8 @@ public class BackgroundGeolocationService extends Service implements GoogleApiCl
// Configure LocationRequest // Configure LocationRequest
locationRequest = LocationRequest.create() locationRequest = LocationRequest.create()
.setPriority(translateDesiredAccuracy(desiredAccuracy)) .setPriority(translateDesiredAccuracy(desiredAccuracy))
.setInterval(this.getLocationUpdateInterval()) .setInterval(getLocationUpdateInterval())
.setFastestInterval(this.getFastestLocationUpdateInterval()) .setFastestInterval(getFastestLocationUpdateInterval())
.setSmallestDisplacement(distanceFilter); .setSmallestDisplacement(distanceFilter);
LocationServices.FusedLocationApi.requestLocationUpdates(googleApiClient, locationRequest, locationUpdatePI); LocationServices.FusedLocationApi.requestLocationUpdates(googleApiClient, locationRequest, locationUpdatePI);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment