Skip to content

Commit

Permalink
fix foreach
Browse files Browse the repository at this point in the history
  • Loading branch information
markvdouw committed Nov 2, 2023
1 parent efcf0be commit 4dc82de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ object SideloadedKitsUtils {
}
}
}
kits.forEach { kit ->
for (i in 0..kits.size) {
val kit = kits.get(i)
if (!addedIds.contains(kit.kitId())) {
kit.getJsonConfig()?.let {
results.put(it)
Expand Down

0 comments on commit 4dc82de

Please sign in to comment.