From 30078ce3aa91b81a35e86885d4cfe3cc20daadde Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Wed, 27 Oct 2021 11:22:54 -0500 Subject: [PATCH] Remove unnecessary cast in `UUID.prototype.toString` --- ts/types/UUID.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/types/UUID.ts b/ts/types/UUID.ts index b88c4773ae..2ade275a12 100644 --- a/ts/types/UUID.ts +++ b/ts/types/UUID.ts @@ -19,7 +19,7 @@ export class UUID { } public toString(): UUIDStringType { - return (this.value as unknown) as UUIDStringType; + return this.value as UUIDStringType; } public isEqual(other: UUID): boolean {