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

Commit 253d3033 authored by Julia Tuttle's avatar Julia Tuttle Committed by Android (Google) Code Review
Browse files

Merge "Fix incorrect parameter passing in FlagsFactory" into main

parents 37f89716 9338ab69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ object FlagsFactory {
        namespace: String = "systemui",
        default: Boolean = false
    ): SysPropBooleanFlag {
        val flag = SysPropBooleanFlag(name = name, namespace = "systemui", default = default)
        val flag = SysPropBooleanFlag(name = name, namespace, default = default)
        checkForDupesAndAdd(flag)
        return flag
    }