Remove the check of 'fused' provider for DBH

Bug: 161634196
Test: existing test passing
Change-Id: Iaaa82ffa1a39d1e9b1e0d7780d05002159668a9b
This commit is contained in:
Yu-Han Yang
2020-07-23 12:09:16 -07:00
parent fc66314259
commit 3328749545

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);
}
}