Merge pull request #2892 from weaveworks/lint

Fix golint if/else
This commit is contained in:
Elena Morozova
2017-10-17 11:35:49 -07:00
committed by GitHub
+1 -2
View File
@@ -11,7 +11,6 @@ import (
func GetFS(useExternal bool) http.FileSystem {
if useExternal {
return externalui.FS(false)
} else {
return staticui.FS(false)
}
return staticui.FS(false)
}