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

Commit 34d5891d authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Convert frameworks/native to Result::ok()" am: 4a495bd4 am: 445b5a49 am: 20d1dca9

Change-Id: Iede7e27936fec1d328cff25d34f0461a3a71b774
parents 74a2eb62 20d1dca9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ static void DeactivateApexPackages(const std::vector<apex::ApexFile>& active_pac
    for (const apex::ApexFile& apex_file : active_packages) {
        const std::string& package_path = apex_file.GetPath();
        base::Result<void> status = apex::deactivatePackage(package_path);
        if (!status) {
        if (!status.ok()) {
            LOG(ERROR) << "Failed to deactivate " << package_path << ": "
                       << status.error();
        }