Merge "Fixing index issue in AbstractMasterSystemService"
This commit is contained in:
committed by
Android (Google) Code Review
commit
152168a5b9
@@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user