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

Commit dc13fe4b authored by Lucas Dupin's avatar Lucas Dupin
Browse files

Improve dump format

Test: adb shell dumpsys activity service com.android.systemui
Bug: 130204212
Change-Id: I75a74a46a2bd5e63a0f13a877741cc1ab806d6d0
parent 05777f1a
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.