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

Commit 07f3c0ef authored by Lucas Dupin's avatar Lucas Dupin Committed by android-build-merger
Browse files

Merge "Improve dump format" into qt-dev am: 691169c8

am: c043980b

Change-Id: Icfe254d0bc74279a2ff093aeaf6c813a2146f149
parents d3df9cd4 c043980b
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -59,14 +59,16 @@ public interface SensorManagerPlugin extends Plugin {
        public static final int TYPE_WAKE_DISPLAY = 2;
        public static final int TYPE_SWIPE = 3;

        int mType;
        private int mType;

        public Sensor(int type) {
            mType = type;
        }
        public int getType() {
            return mType;
        }

        public Sensor(int type) {
            mType = type;
        public String toString() {
            return "{PluginSensor type=\"" + mType + "\"}";
        }
    }

+2 −2

File changed.

Contains only whitespace changes.