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

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

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

* commit '5daf77d0':
  Fix formatting in clearApplicationUserData exception message.
parents bab31979 5daf77d0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3748,9 +3748,9 @@ public final class ActivityManagerService extends ActivityManagerNative
                        == PackageManager.PERMISSION_GRANTED) {
                    forceStopPackageLocked(packageName, pkgUid, "clear data");
                } 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);
                }
            }