refacto: remove duplicate

This commit is contained in:
slashformotion
2025-03-17 16:26:43 +01:00
parent 0b2cfc45c1
commit 844e32a11e
2 changed files with 2 additions and 10 deletions
-8
View File
@@ -119,14 +119,6 @@ func parseRFC3339Time(t string) time.Time {
return parsed
}
func boolToString(b bool, trueValue, falseValue string) string {
if b {
return trueValue
}
return falseValue
}
func normalizeVersionFormat(version string) string {
version = strings.ToLower(strings.TrimSpace(version))