summaryrefslogtreecommitdiffstats
path: root/location
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-05-06 08:20:03 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-05-06 08:20:03 -0700
commitf431b4b3ee636a0ba62f462fa51fc3e5ce09c734 (patch)
treeda9ac21fc70cd99f4dd62f9c1a0729da466d4891 /location
parent84c9097d5b919521ed7032db80f044e397856467 (diff)
parentc770ed8a6bb7614ed4a85a672e4e6830bed19a95 (diff)
downloadframeworks_base-f431b4b3ee636a0ba62f462fa51fc3e5ce09c734.zip
frameworks_base-f431b4b3ee636a0ba62f462fa51fc3e5ce09c734.tar.gz
frameworks_base-f431b4b3ee636a0ba62f462fa51fc3e5ce09c734.tar.bz2
am c770ed8: Merge change 1069 into donut
Merge commit 'c770ed8a6bb7614ed4a85a672e4e6830bed19a95' * commit 'c770ed8a6bb7614ed4a85a672e4e6830bed19a95': GpsStatus: Increase NUM_SATELLITES to 255 for future compatibility.
Diffstat (limited to 'location')
-rw-r--r--location/java/android/location/GpsStatus.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/location/java/android/location/GpsStatus.java b/location/java/android/location/GpsStatus.java
index a40b1fb..2cda7fa 100644
--- a/location/java/android/location/GpsStatus.java
+++ b/location/java/android/location/GpsStatus.java
@@ -25,7 +25,7 @@ import java.util.NoSuchElementException;
* This class is used in conjunction with the {@link Listener} interface.
*/
public final class GpsStatus {
- private static final int NUM_SATELLITES = 32;
+ private static final int NUM_SATELLITES = 255;
/* These package private values are modified by the LocationManager class */
private int mTimeToFirstFix;