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

Commit db737653 authored by Shashwat Razdan's avatar Shashwat Razdan
Browse files

Fixing index issue in AbstractMasterSystemService

Bug: 221368794
Test: CTS tests
Change-Id: I2e1e0295a3b02c6a79a5637492cf16f232afc947
parent bb8f7f2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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));
            }
        }
    }