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

Commit 2635bb28 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "cleanup the isUpdatedSystemApp" am: f86cf6fb

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1359902

Change-Id: I2815b83b72268d53b057f072d447b6688bb7d77e
parents 0a354a95 f86cf6fb
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -124,11 +124,7 @@ public final class CarrierAppUtils {
    }

    private static boolean isUpdatedSystemApp(ApplicationInfo ai) {
        if ((ai.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0) {
            return true;
        }

        return false;
        return (ai.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
    }

    /**