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

Commit 152168a5 authored by Shashwat Razdan's avatar Shashwat Razdan Committed by Android (Google) Code Review
Browse files

Merge "Fixing index issue in AbstractMasterSystemService"

parents 3a1df35b db737653
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));
            }
        }
    }