Fix a typo in AbstractMasterSystemService.

Test: make and flash device
Change-Id: I4757dd904748ffd6d6b1f794d1154d58dfce4c1a
This commit is contained in:
Kathy Chen
2022-04-21 12:41:05 -07:00
parent b45b8bdc94
commit dbc7e4a31e

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);
}