Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b1b8e4c authored by destradaa's avatar destradaa
Browse files

Revert API breaking change in System API.

Change introduced in ag/616521

Change-Id: Ia95982b051496e123b4a179746aea15c6a0b8a65
parent 462c9f50
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;