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

Commit ff2332bc authored by Fan Zhang's avatar Fan Zhang
Browse files

Fix lint errors for SettingsUIChanged atom event.

Bug: 119780708
Test: rebuild
Change-Id: I21d22734cb037e9702cab527a8bb827cc2ee241e
parent 2a9d8df0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1501,17 +1501,17 @@ message SettingsUIChanged {
    /**
     * Where the action is happening
     */
    optional android.app.settings.PageId pageId = 3;
    optional android.app.settings.PageId page_id = 3;

    /**
     * What preference changed in this event.
     */
    optional string changedPreferenceKey = 4;
    optional string changed_preference_key = 4;

    /**
     * The new value of the changed preference.
     */
    optional int64 changedPreferenceIntValue = 5;
    optional int64 changed_preference_int_value = 5;
}

/**