Fix regression from location changes: GPS battery tracking.

The client UID list wasn't being saved, so we never removed
client UID's. As a result apps get blamed for GPS even when
they are no longer using it.

Bug: 7007314
Change-Id: Idff3b7c8c0ee87b99c9bdd7bd20d8391d0b1ac0f
This commit is contained in:
Nick Pelly
2012-08-17 11:55:10 -07:00
parent 2ff0c04844
commit f2033e473a

View File

@@ -845,6 +845,9 @@ public class GpsLocationProvider implements LocationProviderInterface {
}
}
}
// save current uids
mClientUids = uids;
}
@Override