Make DcRtInfo Power State Constants Final

Bug: 26779884
Change-Id: Ia035b67fd682adb6542d6569d7634678f68a1e30
This commit is contained in:
Nathan Harold
2016-01-25 17:04:04 -08:00
parent 77eb57976e
commit ec1d600153

View File

@@ -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]