Merge "Fix a typo in AbstractMasterSystemService." into tm-dev

This commit is contained in:
Kathy Chen
2022-04-22 06:14:01 +00:00
committed by Android (Google) Code Review

View File

@@ -948,7 +948,7 @@ public abstract class AbstractMasterSystemService<M extends AbstractMasterSystem
pw.println(": ");
final List<S> services = mServicesCacheList.valueAt(i);
for (int j = 0; j < services.size(); j++) {
S service = services.get(i);
S service = services.get(j);
synchronized (service.mLock) {
service.dumpLocked(prefix2, pw);
}