1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-26 05:24:49 +02:00

Indexed for-loop

This commit is contained in:
Paul Schaub 2023-06-30 18:04:42 +02:00
parent 008f1b22ef
commit 8d68a29836
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -100,8 +100,7 @@ class Path(
}
var cyclic = root.fingerprint == certification.target.fingerprint
for (i in 0 until edges.size) {
val edge = edges[i]
for ((i, edge) in edges.withIndex()) {
if (cyclic) {
break
}