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

Commit d0045026 authored by Todd Poynor's avatar Todd Poynor
Browse files

BatteryProperty: Fix ENERGY_COUNTER property id

Change-Id: I0490c0d589c637744c3db73596d34c1c4772074b
parent 9f561c36
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20574,7 +20574,7 @@ package android.os {
    field public static final android.os.Parcelable.Creator CREATOR;
    field public static final int CURRENT_AVERAGE = 3; // 0x3
    field public static final int CURRENT_NOW = 2; // 0x2
    field public static final int ENERGY_COUNTER = 4; // 0x4
    field public static final int ENERGY_COUNTER = 5; // 0x5
  }
  public class Binder implements android.os.IBinder {
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ public class BatteryProperty implements Parcelable {
    /**
     * Battery remaining energy in nanowatt-hours, as a long integer.
     */
    public static final int ENERGY_COUNTER = 4;
    public static final int ENERGY_COUNTER = 5;

    private long mValueLong;