diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-06 08:20:03 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-06 08:20:03 -0700 |
commit | f431b4b3ee636a0ba62f462fa51fc3e5ce09c734 (patch) | |
tree | da9ac21fc70cd99f4dd62f9c1a0729da466d4891 | |
parent | 84c9097d5b919521ed7032db80f044e397856467 (diff) | |
parent | c770ed8a6bb7614ed4a85a672e4e6830bed19a95 (diff) | |
download | frameworks_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.
-rw-r--r-- | location/java/android/location/GpsStatus.java | 2 |
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; |