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

Commit 4e3e50cf authored by Christopher Tate's avatar Christopher Tate
Browse files

Clean up the last two literal permission string usages

parent 7c5ae202
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1205,7 +1205,7 @@ class BackupManagerService extends IBackupManager.Stub {
        // If the caller does not hold the BACKUP permission, it can only request a
        // wipe of its own backed-up data.
        HashSet<ApplicationInfo> apps;
        if ((mContext.checkPermission("android.permission.BACKUP", Binder.getCallingPid(),
        if ((mContext.checkPermission(android.Manifest.permission.BACKUP, Binder.getCallingPid(),
                Binder.getCallingUid())) == PackageManager.PERMISSION_DENIED) {
            apps = mBackupParticipants.get(Binder.getCallingUid());
        } else {
@@ -1278,7 +1278,8 @@ class BackupManagerService extends IBackupManager.Stub {

    // Report the name of the currently active transport
    public String getCurrentTransport() {
        mContext.enforceCallingPermission("android.permission.BACKUP", "getCurrentTransport");
        mContext.enforceCallingPermission(android.Manifest.permission.BACKUP,
                "getCurrentTransport");
        Log.v(TAG, "... getCurrentTransport() returning " + mCurrentTransport);
        return mCurrentTransport;
    }