mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-06 21:51:33 +00:00
clean some redundant else clauses
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
This commit is contained in:
@@ -26,7 +26,6 @@ func HumanDuration(d time.Duration) string {
|
||||
return fmt.Sprintf("%d weeks", hours/24/7)
|
||||
} else if hours < 24*365*2 {
|
||||
return fmt.Sprintf("%d months", hours/24/30)
|
||||
} else {
|
||||
return fmt.Sprintf("%d years", hours/24/365)
|
||||
}
|
||||
return fmt.Sprintf("%d years", int(d.Hours())/24/365)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user