mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-29 00:51:35 +02:00
Remove redundant len
check
From the Go specification [1]: "3. If the map is nil, the number of iterations is 0." `len` returns 0 if the map is nil [2]. Therefore, checking `len(v) > 0` before a loop is unnecessary. [1]: https://go.dev/ref/spec#For_range [2]: https://pkg.go.dev/builtin#len Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
This commit is contained in:
@ -99,32 +99,30 @@ func (self *HostingServiceMgr) getCandidateServiceDomains() []ServiceDomain {
|
|||||||
|
|
||||||
serviceDomains := slices.Clone(defaultServiceDomains)
|
serviceDomains := slices.Clone(defaultServiceDomains)
|
||||||
|
|
||||||
if len(self.configServiceDomains) > 0 {
|
for gitDomain, typeAndDomain := range self.configServiceDomains {
|
||||||
for gitDomain, typeAndDomain := range self.configServiceDomains {
|
provider, webDomain, success := strings.Cut(typeAndDomain, ":")
|
||||||
provider, webDomain, success := strings.Cut(typeAndDomain, ":")
|
|
||||||
|
|
||||||
// we allow for one ':' for specifying the TCP port
|
// we allow for one ':' for specifying the TCP port
|
||||||
if !success || strings.Count(webDomain, ":") > 1 {
|
if !success || strings.Count(webDomain, ":") > 1 {
|
||||||
self.log.Errorf("Unexpected format for git service: '%s'. Expected something like 'github.com:github.com'", typeAndDomain)
|
self.log.Errorf("Unexpected format for git service: '%s'. Expected something like 'github.com:github.com'", typeAndDomain)
|
||||||
continue
|
continue
|
||||||
}
|
|
||||||
|
|
||||||
serviceDefinition, ok := serviceDefinitionByProvider[provider]
|
|
||||||
if !ok {
|
|
||||||
providerNames := lo.Map(serviceDefinitions, func(serviceDefinition ServiceDefinition, _ int) string {
|
|
||||||
return serviceDefinition.provider
|
|
||||||
})
|
|
||||||
|
|
||||||
self.log.Errorf("Unknown git service type: '%s'. Expected one of %s", provider, strings.Join(providerNames, ", "))
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
serviceDomains = append(serviceDomains, ServiceDomain{
|
|
||||||
gitDomain: gitDomain,
|
|
||||||
webDomain: webDomain,
|
|
||||||
serviceDefinition: serviceDefinition,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
serviceDefinition, ok := serviceDefinitionByProvider[provider]
|
||||||
|
if !ok {
|
||||||
|
providerNames := lo.Map(serviceDefinitions, func(serviceDefinition ServiceDefinition, _ int) string {
|
||||||
|
return serviceDefinition.provider
|
||||||
|
})
|
||||||
|
|
||||||
|
self.log.Errorf("Unknown git service type: '%s'. Expected one of %s", provider, strings.Join(providerNames, ", "))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
serviceDomains = append(serviceDomains, ServiceDomain{
|
||||||
|
gitDomain: gitDomain,
|
||||||
|
webDomain: webDomain,
|
||||||
|
serviceDefinition: serviceDefinition,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return serviceDomains
|
return serviceDomains
|
||||||
|
Reference in New Issue
Block a user