Skip to content

Commit f55add5

Browse files
committed
1 parent 89c9175 commit f55add5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle.kts

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

66
group = ""
7-
version = "1.0"
7+
version = "1.0.1"
88

99
application {
1010
mainClassName = "NonStopKt"

src/main/kotlin/NonStop.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ object NonStop {
5454
val targetGradients = targetGradientsMapEntry.value
5555
logv("Inserting stops for id $targetGradientId, ${targetGradients.count()} gradient(s) count")
5656
targetGradients.forEach { targetGradient ->
57-
stops.forEach { stop ->
58-
logv("Inserting stop ${stop.getId()} for target gradient ${targetGradient.getId()}")
57+
stops.forEachIndexed { stopNum, stop ->
58+
logv("Inserting stop #$stopNum for target gradient ${targetGradient.getId()}")
5959
// appendChild will move node if attached to document already, cloning then
6060
targetGradient.appendChild(stop.cloneNode(false))
6161
}

0 commit comments

Comments
 (0)