Skip to content

Commit e269749

Browse files
committed
Ignored sonar issue...
1 parent 8035bdf commit e269749

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-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.14.0'
7+
version '0.14.1'
88

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

day14/src/main/kotlin/de/havox_design/aoc2023/day14/Day14.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Day14(private var filename: String) {
77
.northLoad()
88
.toLong()
99

10+
@SuppressWarnings("kotlin:S6611")
1011
fun solvePart2(numberOfCycles: Int = 1000000000): Long {
1112
val matrix = Matrix(getResourceAsText(filename))
1213
val cycleMap: MutableMap<Int, String> = mutableMapOf(0 to matrix.toString())

0 commit comments

Comments
 (0)