1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-09-27 18:19:34 +02:00

Network: toString formatting fix

This commit is contained in:
Heiko Schaefer 2023-06-28 20:31:19 +02:00
parent 98fb643af6
commit 7e6e9274f8
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D

View file

@ -60,7 +60,7 @@ class Network(
for (issuer in nodes.keys) {
val outEdges = edges[issuer] ?: continue
for (edge in outEdges) {
sb.append(edge)
sb.appendLine(edge)
}
}
return sb.toString()