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

Commit 9ba771bb authored by John Reck's avatar John Reck Committed by Android Git Automerger
Browse files

am c2db381e: am 6b66a4a8: use findProcess instead of getProcess

* commit 'c2db381e':
  use findProcess instead of getProcess
parents b621b71c c2db381e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3652,7 +3652,7 @@ public final class ActivityManagerService extends ActivityManagerNative
    @Override
    public boolean setProcessMemoryTrimLevel(String process, int userId, int level) {
        synchronized (this) {
            final ProcessRecord app = getProcessRecordLocked(process, userId, true);
            final ProcessRecord app = findProcessLocked(process, userId, "setProcessMemoryTrimLevel");
            if (app == null) {
                return false;
            }
+1 −1

File changed.

Contains only whitespace changes.