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

Commit 5b5fc26f authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

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

parents 6ad3b980 07f3c0ef
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.