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

Commit 6fc20cbf authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "thermalservice: future-proofing fixup to Temperature constructor"

parents d2151347 6d5ce9e2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ public class Temperature implements Parcelable {
    private int mType;

    public Temperature() {
        mType = Integer.MIN_VALUE;
        mValue = HardwarePropertiesManager.UNDEFINED_TEMPERATURE;
        this(HardwarePropertiesManager.UNDEFINED_TEMPERATURE,
            Integer.MIN_VALUE);
    }

    public Temperature(float value, int type) {