Skip to content

Commit 30e6bd2

Browse files
committed
fix sonar issues
1 parent defe37f commit 30e6bd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aoc2022/aoc2022-kotlin/src/main/kotlin/de/havox_design/aoc2022/day23/UnstableDiffusion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class UnstableDiffusion(private var filename: String) {
6666
}
6767
}
6868

69-
for ((point, candidates) in proposals) {
69+
for ((point, candidates:List<Point>) in proposals) {
7070
if (candidates.size == 1) {
7171
data.remove(candidates[0])
7272
data.add(point)

0 commit comments

Comments
 (0)