File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66group = " "
7- version = " 1.0"
7+ version = " 1.0.1 "
88
99application {
1010 mainClassName = " NonStopKt"
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments