summaryrefslogtreecommitdiffstats
path: root/location
diff options
context:
space:
mode:
authorTom O'Neill <tomo@google.com>2014-09-08 10:06:34 -0700
committerTom O'Neill <tomo@google.com>2014-09-08 10:14:33 -0700
commitbc3095139e9b8c7640fe6cebb4fc527af916d1be (patch)
tree605d2d26202c89f6ad4ccff46c0537c563f9c3c9 /location
parenta740b2bf9a492df5301336e2533651fa90e57c6b (diff)
downloadframeworks_base-bc3095139e9b8c7640fe6cebb4fc527af916d1be.zip
frameworks_base-bc3095139e9b8c7640fe6cebb4fc527af916d1be.tar.gz
frameworks_base-bc3095139e9b8c7640fe6cebb4fc527af916d1be.tar.bz2
Fix a STOPSHIP
Change-Id: I3714f1645c0a847e912cb79515fe3991960c1698
Diffstat (limited to 'location')
-rw-r--r--location/java/android/location/LocationManager.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/location/java/android/location/LocationManager.java b/location/java/android/location/LocationManager.java
index 082a158..2c805bb 100644
--- a/location/java/android/location/LocationManager.java
+++ b/location/java/android/location/LocationManager.java
@@ -1109,9 +1109,9 @@ public class LocationManager {
* {@link #requestLocationUpdates(String, long, float, LocationListener)}.
*
* <p>
- * Before API version 20, this method would throw {@link SecurityException}
- * if the location permissions were not sufficient to use the specified
- * provider.
+ * Before API version {@link android.os.Build.VERSION_CODES#L}, this
+ * method would throw {@link SecurityException} if the location permissions
+ * were not sufficient to use the specified provider.
*
* @param provider the name of the provider
* @return true if the provider exists and is enabled
@@ -1119,7 +1119,6 @@ public class LocationManager {
* @throws IllegalArgumentException if provider is null
*/
public boolean isProviderEnabled(String provider) {
- // STOPSHIP: finalize API version number in javadoc
checkProvider(provider);
try {