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

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

Merge "Improve dump format" into qt-dev

am: 691169c8

Change-Id: I3def8e9fc5ef3276548baf50bfd8041ada3c78ca
parents e9d8818f 691169c8
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.