chore: remove unused variable

This commit is contained in:
Shishkevich D. 2025-03-09 06:38:45 +00:00
parent 582a9a44eb
commit de063acc02

View file

@ -106,7 +106,7 @@ class RandomUtil {
static randomShortIds() { static randomShortIds() {
const lengths = [2, 4, 6, 8, 10, 12, 14, 16].sort(() => Math.random() - 0.5); const lengths = [2, 4, 6, 8, 10, 12, 14, 16].sort(() => Math.random() - 0.5);
const seq = this.getSeq();
return lengths.map(len => this.randomSeq(len)).join(','); return lengths.map(len => this.randomSeq(len)).join(',');
} }