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

Commit 8a218307 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Migrate from android::String isEmpty to empty" into main

parents ee6590ef 38836b88
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ String8 sessionIdToString(const std::vector<uint8_t>& sessionId) {
    for (auto it = sessionId.begin(); it != sessionId.end(); it++) {
        result.appendFormat("%02x ", *it);
    }
    if (result.isEmpty()) {
    if (result.empty()) {
        result.append("(null)");
    }
    return result;