lint: simplify return statements

gosimple S1008
This commit is contained in:
Roxie Gibson 2021-08-13 12:47:41 +01:00
parent f81a7c03b9
commit 44053d6bfb
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
1 changed files with 2 additions and 10 deletions

View File

@ -74,11 +74,7 @@ func (t Tag) IsGreaterThan(tag Tag) bool {
// take into account here, shorter is bigger (i.e. 2.1 < 2.1.1 == false, 2 <
// 2.1 == false).
func (t Tag) IsLessThan(tag Tag) bool {
if t.IsGreaterThan(tag) {
return false
}
return true
return !t.IsGreaterThan(tag)
}
// Equals tests Tag equality
@ -106,11 +102,7 @@ func (t Tag) Equals(tag Tag) bool {
p1, _ := strconv.Atoi(t.Patch)
p2, _ := strconv.Atoi(tag.Patch)
if p1 != p2 {
return false
}
return true
return p1 == p2
}
// String formats a Tag correctly in string representation