Corrected to pass lint gosimple
This commit is contained in:
parent
c48c37ad09
commit
c6d5a7984d
1 changed files with 1 additions and 3 deletions
|
@ -76,9 +76,7 @@ func extensionsFromString(from string) map[string]bool {
|
||||||
if ext == "." {
|
if ext == "." {
|
||||||
extmap[""] = true
|
extmap[""] = true
|
||||||
} else {
|
} else {
|
||||||
if strings.HasPrefix(ext, ".") {
|
ext = strings.TrimPrefix(ext, ".")
|
||||||
ext = ext[1:]
|
|
||||||
}
|
|
||||||
if ext != "" {
|
if ext != "" {
|
||||||
extmap[ext] = true
|
extmap[ext] = true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue