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

Commit 7ab27323 authored by Jacky Wang's avatar Jacky Wang
Browse files

[Catalyst] Do not dump isPersistent for PreferenceGroup

Bug: 332201912
Flag: TEST_ONLY
Test: atest
Change-Id: I784a109f651f21a321814a5342244b9f8689e8b0
parent 76eb1763
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -128,7 +128,9 @@ abstract class CatalystScreenTestCase {
        builder.append(indent2).append("isCopyingEnabled: $isCopyingEnabled\n")
        builder.append(indent2).append("isEnabled: $isEnabled\n")
        builder.append(indent2).append("isIconSpaceReserved: $isIconSpaceReserved\n")
        if (clazz != Preference::class.java && clazz != PreferenceScreen::class.java) {
        if (
            clazz != Preference::class.java && !PreferenceGroup::class.java.isAssignableFrom(clazz)
        ) {
            builder.append(indent2).append("isPersistent: $isPersistent\n")
        }
        builder.append(indent2).append("isSelectable: $isSelectable\n")