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

Commit 836adb41 authored by Sooraj Sasindran's avatar Sooraj Sasindran
Browse files

cleanup the isUpdatedSystemApp

cleanup the isUpdatedSystemApp function

Test: build
Change-Id: I543a30ec8e88586e672c2a54c0c0c55ae8f3ba41
parent 68a510ac
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -128,11 +128,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;
    }

    /**