Merge "Remove checkPermission() call in getAllProviders()." into jb-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
fc6770e748
@@ -645,12 +645,11 @@ public class LocationManagerService extends ILocationManager.Stub implements Run
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns all providers by name, including passive, but excluding
|
* Returns all providers by name, including passive, but excluding
|
||||||
* fused.
|
* fused, also including ones that are not permitted to
|
||||||
|
* be accessed by the calling activity or are currently disabled.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<String> getAllProviders() {
|
public List<String> getAllProviders() {
|
||||||
checkPermission();
|
|
||||||
|
|
||||||
ArrayList<String> out;
|
ArrayList<String> out;
|
||||||
synchronized (mLock) {
|
synchronized (mLock) {
|
||||||
out = new ArrayList<String>(mProviders.size());
|
out = new ArrayList<String>(mProviders.size());
|
||||||
|
|||||||
Reference in New Issue
Block a user