diff options
author | destradaa <destradaa@google.com> | 2015-02-02 11:42:20 -0800 |
---|---|---|
committer | destradaa <destradaa@google.com> | 2015-02-02 11:42:20 -0800 |
commit | 4b1b8e4c44daf97e48f0fb21a74486072a505815 (patch) | |
tree | f7c183310beb5f4b82d20283243f61bc43e2c269 /location | |
parent | 462c9f50c3e52fb62287830056d5b1346120a233 (diff) | |
download | frameworks_base-4b1b8e4c44daf97e48f0fb21a74486072a505815.zip frameworks_base-4b1b8e4c44daf97e48f0fb21a74486072a505815.tar.gz frameworks_base-4b1b8e4c44daf97e48f0fb21a74486072a505815.tar.bz2 |
Revert API breaking change in System API.
Change introduced in ag/616521
Change-Id: Ia95982b051496e123b4a179746aea15c6a0b8a65
Diffstat (limited to 'location')
-rw-r--r-- | location/java/android/location/GpsNavigationMessageEvent.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/location/java/android/location/GpsNavigationMessageEvent.java b/location/java/android/location/GpsNavigationMessageEvent.java index 7452721..bd6921c 100644 --- a/location/java/android/location/GpsNavigationMessageEvent.java +++ b/location/java/android/location/GpsNavigationMessageEvent.java @@ -36,18 +36,18 @@ public class GpsNavigationMessageEvent implements Parcelable { * The system does not support tracking of GPS Navigation Messages. This status will not change * in the future. */ - public static final int STATUS_NOT_SUPPORTED = 0; + public static int STATUS_NOT_SUPPORTED = 0; /** * GPS Navigation Messages are successfully being tracked, it will receive updates once they are * available. */ - public static final int STATUS_READY = 1; + public static int STATUS_READY = 1; /** * GPS provider or Location is disabled, updated will not be received until they are enabled. */ - public static final int STATUS_GPS_LOCATION_DISABLED = 2; + public static int STATUS_GPS_LOCATION_DISABLED = 2; private final GpsNavigationMessage mNavigationMessage; |