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

Commit 67269fe0 authored by Nathan Harold's avatar Nathan Harold Committed by android-build-merger
Browse files

Merge "Make DcRtInfo Power State Constants Final" into mm-wireless-dev

am: 4269239f

* commit '4269239f':
  Make DcRtInfo Power State Constants Final
parents a88abe08 4269239f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -28,10 +28,10 @@ import android.os.Parcelable;
public class DataConnectionRealTimeInfo implements Parcelable {
    private long mTime;             // Time the info was collected since boot in nanos;

    public static int DC_POWER_STATE_LOW       = 1;
    public static int DC_POWER_STATE_MEDIUM    = 2;
    public static int DC_POWER_STATE_HIGH      = 3;
    public static int DC_POWER_STATE_UNKNOWN   = Integer.MAX_VALUE;
    public static final int DC_POWER_STATE_LOW       = 1;
    public static final int DC_POWER_STATE_MEDIUM    = 2;
    public static final int DC_POWER_STATE_HIGH      = 3;
    public static final int DC_POWER_STATE_UNKNOWN   = Integer.MAX_VALUE;

    private int mDcPowerState;      // DC_POWER_STATE_[LOW | MEDIUM | HIGH | UNKNOWN]