get rid of unused toString method

This commit is contained in:
MathMan05 2024-09-03 11:13:09 -05:00
parent c890856ce3
commit 0fc51f0e71
2 changed files with 0 additions and 6 deletions

View file

@ -14,8 +14,5 @@ abstract class SnowFlake{
return 0;
}
}
toString(){
return this.id;
}
}
export{SnowFlake};