Fixing index issue in AbstractMasterSystemService

Bug: 221368794
Test: CTS tests
Change-Id: I2e1e0295a3b02c6a79a5637492cf16f232afc947
This commit is contained in:
Shashwat Razdan
2022-02-24 23:11:52 -08:00
parent bb8f7f2f7b
commit db737653fc

View File

@@ -828,7 +828,7 @@ public abstract class AbstractMasterSystemService<M extends AbstractMasterSystem
for (int i = 0; i < size; i++) {
List<S> services = mServicesCacheList.valueAt(i);
for (int j = 0; j < services.size(); j++) {
visitor.visit(services.get(i));
visitor.visit(services.get(j));
}
}
}