From 44053d6bfba1af1feeff0d1690cbd2b7b4525de2 Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Fri, 13 Aug 2021 12:47:41 +0100 Subject: [PATCH] lint: simplify return statements gosimple S1008 --- tagcmp.go | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tagcmp.go b/tagcmp.go index 55d248e..430d85e 100644 --- a/tagcmp.go +++ b/tagcmp.go @@ -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