Skip to content

Commit f8685cc

Browse files
committed
Remove unused genre formatting string method in QTTrack
1 parent efdccf3 commit f8685cc

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

client/src/scripts/quicktag.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,7 @@ class QTTrack implements QuickTagFile {
310310
this.originalGenres.push(...subgenres.filter(g => !this.genres.includes(g)));
311311
this.genres.push(...subgenres.filter(g => !this.genres.includes(g)));
312312
}
313-
}
314-
315-
// Format genres for display
316-
formatGenresString(genres: string[]): string {
317-
// Filter out any empty strings, then join with comma + space
318-
return this.processGenreArray(genres).join(', ');
319-
}
313+
}
320314

321315
// Process genres
322316
processGenreArray(genres: string[]): string[] {

0 commit comments

Comments
 (0)