(patch) Fixed incomplete function.
Some checks failed
/ Build and Test Library Snapshot (pull_request) Failing after 1m36s

This commit is contained in:
Pat Garrity 2025-07-27 21:30:25 -05:00
parent 9c58510cc4
commit 8195bfce33
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76

View file

@ -118,7 +118,8 @@ object UUID:
* @return
* Hexadecimal string representation of this UUID.
*/
def str(dashes: Boolean = false): String = withoutDashes()
def str(dashes: Boolean = false): String =
if dashes then withDashes() else withoutDashes()
/** @return
* Hexadecimal string representation of this UUID, without dashes.