Corrected to pass lint gosimple

This commit is contained in:
Guillermo Prandi 2019-08-06 02:56:21 -03:00
parent c48c37ad09
commit c6d5a7984d
1 changed files with 1 additions and 3 deletions

View File

@ -76,9 +76,7 @@ func extensionsFromString(from string) map[string]bool {
if ext == "." {
extmap[""] = true
} else {
if strings.HasPrefix(ext, ".") {
ext = ext[1:]
}
ext = strings.TrimPrefix(ext, ".")
if ext != "" {
extmap[ext] = true
}