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

Commit 8256062a 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

Change-Id: I6744e47cc9e85f86217d0c6ecc96e6011e82d99a
parents 6133e645 4286801c
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;
}