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

Commit 7a6a23a6 authored by Kweku Adams's avatar Kweku Adams
Browse files

Fix typo in GuardedBy annotation.

mPhenotypeFlagLock was missing the t.

Bug: 145156314
Test: N/A
Change-Id: If39e45eda8e912108a66e64a66cddec2409288e1
parent 0f2b7fd2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -189,10 +189,10 @@ public final class AppCompactor {
    @GuardedBy("mPhenotypeFlagLock")
    @VisibleForTesting volatile long mFullAnonRssThrottleKb =
            DEFAULT_COMPACT_FULL_RSS_THROTTLE_KB;
    @GuardedBy("mPhenoypeFlagLock")
    @GuardedBy("mPhenotypeFlagLock")
    @VisibleForTesting volatile long mFullDeltaRssThrottleKb =
            DEFAULT_COMPACT_FULL_DELTA_RSS_THROTTLE_KB;
    @GuardedBy("mPhenoypeFlagLock")
    @GuardedBy("mPhenotypeFlagLock")
    @VisibleForTesting final Set<Integer> mProcStateThrottle;

    // Handler on which compaction runs.