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

Commit 45d55893 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Move the "IntFlag:" dump under "DeviceFlag:" section" into main

parents 15ddc16b 8e2a62e6
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) {