From 0fc51f0e7149a00e866e3af27c193dea663b9332 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Tue, 3 Sep 2024 11:13:09 -0500 Subject: [PATCH] get rid of unused toString method --- .dist/snowflake.js | 3 --- webpage/snowflake.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/.dist/snowflake.js b/.dist/snowflake.js index 51a06c0..ff5bf9c 100644 --- a/.dist/snowflake.js +++ b/.dist/snowflake.js @@ -15,8 +15,5 @@ class SnowFlake { return 0; } } - toString() { - return this.id; - } } export { SnowFlake }; diff --git a/webpage/snowflake.ts b/webpage/snowflake.ts index f436253..505c0dc 100644 --- a/webpage/snowflake.ts +++ b/webpage/snowflake.ts @@ -14,8 +14,5 @@ abstract class SnowFlake{ return 0; } } - toString(){ - return this.id; - } } export{SnowFlake};