1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-17 09:04:50 +02:00

Paths add toString

This commit is contained in:
Heiko Schaefer 2023-07-10 18:30:37 +02:00
parent f6f76f4984
commit ed1d4a16a5
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D

View file

@ -55,4 +55,8 @@ class Paths(private val _paths: MutableList<Item>) {
return "$path ($amount)"
}
}
override fun toString(): String {
return paths.joinToString { it.toString() }
}
}