Merge pull request #38025 from thaJeztah/itsy_bitsy_teeny_weeny
Remove redundant nil checks
This commit is contained in:
commit
10ebe6381e
1 changed files with 0 additions and 6 deletions
|
@ -112,9 +112,6 @@ func (daemon *Daemon) fillPlatformInfo(v *types.Info, sysInfo *sysinfo.SysInfo)
|
|||
}
|
||||
|
||||
func fillDriverWarnings(v *types.Info) {
|
||||
if v.DriverStatus == nil {
|
||||
return
|
||||
}
|
||||
for _, pair := range v.DriverStatus {
|
||||
if pair[0] == "Data loop file" {
|
||||
msg := fmt.Sprintf("WARNING: %s: usage of loopback devices is "+
|
||||
|
@ -140,9 +137,6 @@ func fillDriverWarnings(v *types.Info) {
|
|||
}
|
||||
|
||||
func getBackingFs(v *types.Info) string {
|
||||
if v.DriverStatus == nil {
|
||||
return ""
|
||||
}
|
||||
for _, pair := range v.DriverStatus {
|
||||
if pair[0] == "Backing Filesystem" {
|
||||
return pair[1]
|
||||
|
|
Loading…
Add table
Reference in a new issue