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

Commit 5b0e3c08 authored by Ze Li's avatar Ze Li
Browse files

[Bluetooth Diagnosis] Minor format fix

Test: manual test
Bug: 411309851
Flag: com.android.settingslib.flags.enable_bluetooth_diagnosis
Change-Id: Ica19d41b5f9add8ded916bcfd85df2955ad34623
parent b8def990
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -160,7 +160,9 @@ public class DeviceSettingIcon implements Parcelable {

    @Override
    public boolean equals(@Nullable Object obj) {
        if (!(obj instanceof DeviceSettingIcon other)) return false;
        if (!(obj instanceof DeviceSettingIcon other)) {
            return false;
        }
        return mDefaultIcon == other.mDefaultIcon
                && Objects.equals(mCustomizedIcon, other.mCustomizedIcon);
    }
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ public @interface DeviceSettingType {

    /** Device setting type is "help" preference. */
    int DEVICE_SETTING_TYPE_HELP = 4;
    /** Device setting type is banner preference. */

    /** Device setting type is banner preference. */
    int DEVICE_SETTING_TYPE_BANNER = 5;
}