mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 18:38:15 +01:00
Remove unnecessary cast in UUID.prototype.toString
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user