Removing deprecated comment.

This commit is contained in:
John Livingston 2021-11-22 14:05:16 +01:00
parent ba44eabe95
commit 01faeb2d4d
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC

View File

@ -38,7 +38,6 @@ function areAutoColorsValid (autocolors: AutoColors): true | string[] {
const errors: string[] = [] const errors: string[] = []
for (const k in autocolors) { for (const k in autocolors) {
const color = autocolors[k as keyof AutoColors] const color = autocolors[k as keyof AutoColors]
// FIXME: there are missing cases. For now there are only basic values formats.
if (!validateColor(color)) { if (!validateColor(color)) {
errors.push(color) errors.push(color)
} }