clean some redundant else clauses

Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
This commit is contained in:
Zhang Wei
2015-05-19 10:54:04 +08:00
parent 472538bee0
commit d91ae65280
3 changed files with 9 additions and 11 deletions
+1 -2
View File
@@ -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)
}