Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-09-27 18:06:36 -07:00
parent fc77b73399
commit ca6e0e2f0f
4 changed files with 10 additions and 65 deletions

View file

@ -108,5 +108,12 @@ class PinConfig private constructor(
result = 31 * result + toRead.hashCode()
return result
}
override fun toString(): String {
return "Builder(url='$url', description='$description', extended='$extended'," +
"tags=${tags.contentToString()}, dt=$dt, replace=$replace, shared=$shared, toRead=$toRead)"
}
}
}