Remove unnecessary cast in UUID.prototype.toString
This commit is contained in:
parent
79b3b6408e
commit
30078ce3aa
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue