(patch) Fixed incomplete function.
Some checks failed
/ Build and Test Library Snapshot (pull_request) Failing after 1m36s
Some checks failed
/ Build and Test Library Snapshot (pull_request) Failing after 1m36s
This commit is contained in:
parent
9c58510cc4
commit
8195bfce33
1 changed files with 2 additions and 1 deletions
|
@ -118,7 +118,8 @@ object UUID:
|
||||||
* @return
|
* @return
|
||||||
* Hexadecimal string representation of this UUID.
|
* 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
|
/** @return
|
||||||
* Hexadecimal string representation of this UUID, without dashes.
|
* Hexadecimal string representation of this UUID, without dashes.
|
||||||
|
|
Loading…
Add table
Reference in a new issue