Merge "Remove the check of 'fused' provider for DBH"

This commit is contained in:
TreeHugger Robot
2020-07-24 00:57:55 +00:00
committed by Android (Google) Code Review

View File

@@ -2008,9 +2008,7 @@ public class GnssLocationProvider extends AbstractLocationProvider implements
private final class FusedLocationListener extends LocationChangeListener {
@Override
public void onLocationChanged(Location location) {
if (LocationManager.FUSED_PROVIDER.equals(location.getProvider())) {
injectBestLocation(location);
}
injectBestLocation(location);
}
}