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
// Configure LocationRequest
locationRequest = LocationRequest.create()
.setPriority(translateDesiredAccuracy(desiredAccuracy))
.setInterval(this.getLocationUpdateInterval())
.setFastestInterval(this.getFastestLocationUpdateInterval())
.setInterval(getLocationUpdateInterval())
.setFastestInterval(getFastestLocationUpdateInterval())
.setSmallestDisplacement(distanceFilter);
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