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

Commit 5daf77d0 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am ac39c604: Merge "Fix formatting in clearApplicationUserData exception message."

* commit 'ac39c604':
  Fix formatting in clearApplicationUserData exception message.
parents 753c1a33 ac39c604
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3534,9 +3534,9 @@ public final class ActivityManagerService extends ActivityManagerNative
                        == PackageManager.PERMISSION_GRANTED) {
                    forceStopPackageLocked(packageName, pkgUid);
                } else {
                    throw new SecurityException(pid+" does not have permission:"+
                            android.Manifest.permission.CLEAR_APP_USER_DATA+" to clear data" +
                                    "for process:"+packageName);
                    throw new SecurityException("PID " + pid + " does not have permission "
                            + android.Manifest.permission.CLEAR_APP_USER_DATA + " to clear data"
                                    + " of package " + packageName);
                }
            }