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

Commit ac39c604 authored by Christopher Tate's avatar Christopher Tate Committed by Gerrit Code Review
Browse files

Merge "Fix formatting in clearApplicationUserData exception message."

parents 457f0f5e 03ea0471
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);
                }
            }