style(tagcmp): simplify returns

This commit is contained in:
Roxie Gibson 2021-08-12 14:44:49 +01:00
parent 8f9ffa0667
commit 6df08df509
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