Commit 9899f79f authored by santiaago's avatar santiaago
Browse files

remove redundant condition.

parent f015b017
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -544,7 +544,7 @@ func isOneOfTheFourLegsInner(xQ int) bool {
}

func isOneOfTheFourLegsInnerLow(xQ int) bool {
	if xQ == 3 || xQ == 5 || xQ == 5 || xQ == 7 {
	if xQ == 3 || xQ == 5 || xQ == 7 {
		return true
	}
	return false