Skip to content

Commit 5fd2a62

Browse files
committed
ignored sonar issues
1 parent 624b8c2 commit 5fd2a62

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
// project meta data
66
group 'de.havox_design.aoc2023'
7-
version '0.10.0'
7+
version '0.10.1'
88

99
// Switch to gradle "all" distribution.
1010
wrapper {

day10/src/main/kotlin/de/havox_design/aoc2023/day10/Day10.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ class Day10(private var filename: String) {
205205
}
206206
}
207207

208+
@SuppressWarnings("kotlin:S6510")
208209
private fun left(
209210
loop: List<Pair<Int, Int>>,
210211
currentTile: Pair<Int, Int>,
@@ -229,6 +230,7 @@ class Day10(private var filename: String) {
229230
}
230231
}
231232

233+
@SuppressWarnings("kotlin:S6510")
232234
private fun right(
233235
loop: List<Pair<Int, Int>>,
234236
currentTile: Pair<Int, Int>,

0 commit comments

Comments
 (0)