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

Commit db738953 authored by Wei Wang's avatar Wei Wang Committed by android-build-merger
Browse files

Merge "init: fix BuildTriggersString for empty string" am: 9b1d5e15 am: 4286801c

am: 8256062a

Change-Id: I92fcc30a07290976f28a63da3310efff6ca29c7c
parents d7a92fd8 8256062a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -247,7 +247,9 @@ std::string Action::BuildTriggersString() const {
        result += event_trigger_;
        result += ' ';
    }
    if (!result.empty()) {
        result.pop_back();
    }
    return result;
}