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

Commit 8e2a62e6 authored by Anushree Ganjam's avatar Anushree Ganjam
Browse files

Move the "IntFlag:" dump under "DeviceFlag:" section

Bug: 309033453
Test: Manual by capturing bug report.
https://screenshot.googleplex.com/5q7fHrxEhC8zZxY.png

Flag: None, adding more print to appear in bug report

Change-Id: I18244d4fcf85fbae0e3f48082606c7d46166c311
parent df9d94a9
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -171,6 +171,7 @@ public class FlagsFactory {
            return;
        }
        pw.println("DeviceFlags:");
        pw.println("  BooleanFlags:");
        synchronized (sDebugFlags) {
            for (DebugFlag flag : sDebugFlags) {
                if (flag instanceof DeviceFlag) {
@@ -178,6 +179,12 @@ public class FlagsFactory {
                }
            }
        }
        pw.println("  IntFlags:");
        synchronized (sIntFlags) {
            for (IntFlag flag : sIntFlags) {
                pw.println("    " + flag);
            }
        }
        pw.println("DebugFlags:");
        synchronized (sDebugFlags) {
            for (DebugFlag flag : sDebugFlags) {
@@ -186,12 +193,6 @@ public class FlagsFactory {
                }
            }
        }
        pw.println("IntFlags:");
        synchronized (sIntFlags) {
            for (IntFlag flag : sIntFlags) {
                pw.println("  " + flag);
            }
        }
    }

    private void onPropertiesChanged(Properties properties) {