Fix du warning magick convert
Some checks are pending
gitea-openium/resgen.swift/pipeline/head This commit looks good
gitea-openium/resgen.swift/pipeline/pr-master Build queued...

This commit is contained in:
2025-05-05 10:28:40 +02:00
parent ccda606af5
commit c8950c45ac
50 changed files with 334 additions and 166 deletions

View File

@@ -344,7 +344,6 @@ enum StringsFileGenerator {
guard definition.hasOneOrMoreMatchingTags(inputTags: tags) == true else {
return // Go to next definition
}
debugPrint("Found definition")
enumDefinition += " case \(definition.name) = \"\(definition.name)\"\n"
}
}
@@ -363,7 +362,6 @@ enum StringsFileGenerator {
guard definition.hasOneOrMoreMatchingTags(inputTags: tags) == true else {
return // Go to next definition
}
debugPrint("Found definition")
enumDefinition += " case .\(definition.name): return \\\(extensionClassname).\(definition.name)\n"
}
}